From 6915d2c2fc3f30e350f37af11aa3c9adce8698ff Mon Sep 17 00:00:00 2001 From: Stoyan Zlatev Date: Mon, 31 Mar 2025 09:09:42 +0200 Subject: [PATCH] recipes mapping + dates on the overall results --- Common/CommonConsole/Program.cs | 12 +- .../Models/EregisterProgrammingParameters.cs | 24 +- Common/Ui/Common.UI/Common.UI.csproj | 4 +- .../ViewModels/EregisterInitializeVM.cs | 4 +- .../LaaProduction.Console/Program.cs | 222 +- .../LaaProduction.Console/sentinel-data.json | 89305 ---------------- .../Components/App.razor | 7 +- .../Components/CSD/Data/SelectItem[T].cs | 23 + .../Components/CSD/Data/VAKOMerkmale.cs | 355 + .../Components/CSD/Models/CSDItem.cs | 11 + .../Components/CSD/Navbar.razor | 16 - .../CSD/ProgrammingParameters.razor | 67 +- .../CSD/ProgrammingParameters.razor.cs | 38 +- .../Models/HeliumTesterService.cs | 4 +- .../HeliumTester/Models/OverallItem.cs | 2 + .../Components/HeliumTester/Models/PcbItem.cs | 6 + .../HeliumTester/Models/PcbRecipeDTO.cs | 27 + .../HeliumTester/Models/PcbRecipeEntity.cs | 27 + .../HeliumTester/Models/PcbRecipeModel.cs | 461 + .../Models/RecipesAssignmentModel.cs | 55 + .../Models/RecipesCollectionModel.cs | 35 +- .../Components/HeliumTester/Navbar.razor | 127 +- .../Components/HeliumTester/Navbar.razor.cs | 3 + .../HeliumTester/OverallItems.razor | 24 +- .../Components/HeliumTester/PcbRecipes.razor | 139 + .../HeliumTester/PcbRecipes.razor.cs | 18 + .../Components/HeliumTester/Recipes.razor.cs | 6 +- .../Components/Layout.razor | 2 +- .../LaaProductionWeb.Blazor/Program.cs | 2 + .../bootstrap/css/bootstrap.overrides.css | 27 +- .../bootstrap/icons/chevron-expand.svg | 1 + 31 files changed, 1580 insertions(+), 89474 deletions(-) delete mode 100644 LaaProductionWeb/LaaProduction.Console/sentinel-data.json create mode 100644 LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/Data/SelectItem[T].cs create mode 100644 LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/Data/VAKOMerkmale.cs create mode 100644 LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/Models/CSDItem.cs create mode 100644 LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/PcbItem.cs create mode 100644 LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/PcbRecipeDTO.cs create mode 100644 LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/PcbRecipeEntity.cs create mode 100644 LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/PcbRecipeModel.cs create mode 100644 LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/RecipesAssignmentModel.cs create mode 100644 LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/PcbRecipes.razor create mode 100644 LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/PcbRecipes.razor.cs create mode 100644 LaaProductionWeb/LaaProductionWeb.Blazor/wwwroot/bootstrap/icons/chevron-expand.svg diff --git a/Common/CommonConsole/Program.cs b/Common/CommonConsole/Program.cs index c462c245..12742a90 100644 --- a/Common/CommonConsole/Program.cs +++ b/Common/CommonConsole/Program.cs @@ -109,12 +109,16 @@ // | FDRMask.LOG_ALARM_STATE // | FDRMask.LOG_EXT_ALARM_STATE; + + // 0B0126B768500A110B118427BAA2C5C18069035350000219BF3621116029186A00986A0000005A0A3 + public static void Main() { - var dbytes = "34-0B-10-12-6B-70-F2-00-0A-01-0B-01-06-05-01-50-4B-FF-F3-19-00-69-03-35-35-00-00-02-00-03-11-C5-EE-02-01-00-16-00-18-02-71-00-00-82-71-00-00-00-00-00-00-05-0A-4D-6A-16"; - var debug = new DEBUG(dbytes.GetBytes(), new P11()); - var sbytes = "08-06-12-6B-70-F2-00-00-01-F4-00-00-A5-0A-00-0F-03-00-00-00-00-00-00-09-13-01-88-73-FD-07-0E-10-A8-57-6E-D2-D1-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-04-03-00-3C-00-03-01-2F-76-6D-79-1D-00-00-00-00-00-00-00-00-00-00-00-00-00-18"; - var semi = new SEMI(sbytes.GetBytes(), 868, new P11()); + var hex = "0B-00-12-6B-76-85-00-0A-11-0B-11-08-04-02-7B-AA-2C-5C-18-00-69-00-35-35-00-00-00-00-02-19-BF-36-02-01-01-16-00-29-18-6A-00-00-98-6A-00-00-00-00-00-00-05-A0-A3"; + var bytes = hex.GetBytes(); + var debug = new DEBUG(bytes, new P11()); + + Console.WriteLine((debug.BatterySeconds - 0x02_00_00_00) / 60 / 60 / 24); } } } \ No newline at end of file diff --git a/Common/Hardware/WaterMeter/eRegister/Common.Hardware.WaterMeter.eRegister/Models/EregisterProgrammingParameters.cs b/Common/Hardware/WaterMeter/eRegister/Common.Hardware.WaterMeter.eRegister/Models/EregisterProgrammingParameters.cs index 016d0839..d99b602f 100644 --- a/Common/Hardware/WaterMeter/eRegister/Common.Hardware.WaterMeter.eRegister/Models/EregisterProgrammingParameters.cs +++ b/Common/Hardware/WaterMeter/eRegister/Common.Hardware.WaterMeter.eRegister/Models/EregisterProgrammingParameters.cs @@ -258,17 +258,25 @@ EncryptionKey = this.EncryptionKey.GetEncryptionKey(), }; + if (!this.IsValid) + { + features.ChangeMeterReading = new ChangeMeterReading(222_222_222); + + return features; + } + if (this.StatusFertigung != 30) { - return new EregisterFeatures(); - } - else if (this.IsEbeling) - { - - } - else if (this.IsFuhzoe) - { + features.ChangeMeterReading = new ChangeMeterReading(333_333_333); + features.Debug = new EregisterDebugFeatures + { + OpticalTelegram = new OpticalTelegram + { + Minutes = 0 + } + }; + return features; } features.Debug = new EregisterDebugFeatures(); diff --git a/Common/Ui/Common.UI/Common.UI.csproj b/Common/Ui/Common.UI/Common.UI.csproj index 525be4ee..d71fd2f7 100644 --- a/Common/Ui/Common.UI/Common.UI.csproj +++ b/Common/Ui/Common.UI/Common.UI.csproj @@ -26,7 +26,7 @@ false false true - 1 + 2 1.0.0.%2a false true @@ -56,7 +56,7 @@ LocalIntranet - false + true Properties\app.manifest diff --git a/Common/Ui/Common.UI/ViewModels/EregisterInitializeVM.cs b/Common/Ui/Common.UI/ViewModels/EregisterInitializeVM.cs index 5f235e51..f9618fa7 100644 --- a/Common/Ui/Common.UI/ViewModels/EregisterInitializeVM.cs +++ b/Common/Ui/Common.UI/ViewModels/EregisterInitializeVM.cs @@ -214,12 +214,12 @@ } else { - throw new Exception(content); + epp.IsValid = false; } } else { - throw new Exception(content); + epp.IsValid = false; } } } diff --git a/LaaProductionWeb/LaaProduction.Console/Program.cs b/LaaProductionWeb/LaaProduction.Console/Program.cs index ef89f70c..e4a2a06e 100644 --- a/LaaProductionWeb/LaaProduction.Console/Program.cs +++ b/LaaProductionWeb/LaaProduction.Console/Program.cs @@ -1,52 +1,194 @@ namespace LaaProduction.Console { - using LaaPackages.HttpClient; - using LaaPackages.SqlClient; - using LaaProduction.Data.Cordonel; - using LaaProduction.Data.Cordonel.Sentinel; - - using Newtonsoft.Json; - using System; - using System.IO; + using System.Collections.Generic; + using System.Linq; public class Program { - public static void Main() + public class CharCode { - Console.WriteLine(-14 * 24 * 60 * 60); + public int Stelle { get; set; } - //var sentinel = new Sentinel( - // new HttpConnection("http://10.49.40.25/") - // , new HttpConnection("localhost") - // , new CordonelDbContext( - // new SqlConnection("Server=SLASQL01.emea.sensus.net; Database=Auftrag; User ID=sa; Password=sqlserver;"))); - //var sentinelDataFile = @"..\..\sentinel-data.json"; - //var result = sentinel.CheckVFMStatus(182100041); + public int Laenge { get; set; } - //Console.WriteLine("========================================================="); - //foreach (var kvp in result) - //{ - // Console.WriteLine($"{kvp.Key}: {kvp.Value}"); - //} - //Console.WriteLine("========================================================="); - - //if (result.Succeeded && result.ContainsKey("UsedData")) - //{ - // var jsonSerializerSettings = new JsonSerializerSettings - // { - // Formatting = Formatting.Indented, - // TypeNameHandling = TypeNameHandling.Objects | TypeNameHandling.Arrays, - // TypeNameAssemblyFormatHandling = TypeNameAssemblyFormatHandling.Simple - // }; - - // var json = JsonConvert.SerializeObject(result["UsedData"], jsonSerializerSettings); - // File.WriteAllText(sentinelDataFile, json); - //} + public string Code { get; set; } } - //const string URL_PATTERN = "https://nodes.sms-esaap.com/keygenproxy/api/v2/keys/devices?orderNumber={0}&radioaddress={1}"; - //const string X_NODE_TOKEN_HEADER = "X-Node-Token"; - //const string X_NODE_TOKEN = "d5b8c0b2-81f6-4421-80d0-44eb2093e616"; + private static void Main() + { + var charCodes = new List + { + new CharCode { Stelle = 45, Laenge = 2, Code = "N2" }, + new CharCode { Stelle = 26, Laenge = 1, Code = "K" }, + new CharCode { Stelle = 5, Laenge = 1, Code = "F" }, + new CharCode { Stelle = 5, Laenge = 1, Code = "G" }, + new CharCode { Stelle = 5, Laenge = 1, Code = "H" }, + new CharCode { Stelle = 5, Laenge = 1, Code = "I" }, + new CharCode { Stelle = 5, Laenge = 1, Code = "K" }, + new CharCode { Stelle = 5, Laenge = 1, Code = "L" }, + new CharCode { Stelle = 5, Laenge = 1, Code = "M" }, + new CharCode { Stelle = 37, Laenge = 1, Code = "A" }, + new CharCode { Stelle = 37, Laenge = 1, Code = "B" }, + }; + + var orderedCharCodes = charCodes + .OrderBy(x => x.Stelle) + .GroupBy(x => x.Stelle) + .ToDictionary(x => x.Key, x => x.ToList()); + var key = orderedCharCodes.Min(x => x.Key); + var patterns = new List(); + + GenerateUniqueCombinations(orderedCharCodes, patterns, key); + + foreach (var pattern in patterns) + { + Console.WriteLine($"'{new string(pattern)}%'"); + } + } + + private static void GenerateUniqueCombinations(Dictionary> charCodes, List patterns, int key) + { + var nextKey = charCodes.FirstOrDefault(x => x.Key > key).Key; + + if (nextKey > default(int)) + { + var parameter = charCodes[nextKey].FirstOrDefault(); + + if (parameter != null) + { + var length = parameter.Stelle + parameter.Laenge - 1; + var tempalte = new char[length]; + + for (var ix = 0; ix < length; ix++) + { + tempalte[ix] = '_'; + } + + if (patterns.Count == 0) + { + patterns.Add(tempalte); + } + else + { + patterns[0] = tempalte; + } + } + + GenerateUniqueCombinations(charCodes, patterns, nextKey); + } + + var templatePatterns = new List(); + templatePatterns.AddRange(patterns); + patterns.Clear(); + + foreach (var parameter in charCodes[key]) + { + foreach (var template in templatePatterns) + { + var pattern = new char[template.Length]; + + Array.Copy(template, 0, pattern, 0, pattern.Length); + + var codeLength = parameter.Code.Length; + + for (var charIX = 0; charIX < codeLength; charIX++) + { + pattern[parameter.Stelle + charIX - 1] = parameter.Code[charIX]; + } + + patterns.Add(pattern); + } + } + } } -} \ No newline at end of file +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +//public static void _____Main() +//{ +// Console.WriteLine(-14 * 24 * 60 * 60); + +// //var sentinel = new Sentinel( +// // new HttpConnection("http://10.49.40.25/") +// // , new HttpConnection("localhost") +// // , new CordonelDbContext( +// // new SqlConnection("Server=SLASQL01.emea.sensus.net; Database=Auftrag; User ID=sa; Password=sqlserver;"))); +// //var sentinelDataFile = @"..\..\sentinel-data.json"; +// //var result = sentinel.CheckVFMStatus(182100041); + +// //Console.WriteLine("========================================================="); +// //foreach (var kvp in result) +// //{ +// // Console.WriteLine($"{kvp.Key}: {kvp.Value}"); +// //} +// //Console.WriteLine("========================================================="); + +// //if (result.Succeeded && result.ContainsKey("UsedData")) +// //{ +// // var jsonSerializerSettings = new JsonSerializerSettings +// // { +// // Formatting = Formatting.Indented, +// // TypeNameHandling = TypeNameHandling.Objects | TypeNameHandling.Arrays, +// // TypeNameAssemblyFormatHandling = TypeNameAssemblyFormatHandling.Simple +// // }; + +// // var json = JsonConvert.SerializeObject(result["UsedData"], jsonSerializerSettings); +// // File.WriteAllText(sentinelDataFile, json); +// //} +//} + +//const string URL_PATTERN = "https://nodes.sms-esaap.com/keygenproxy/api/v2/keys/devices?orderNumber={0}&radioaddress={1}"; +//const string X_NODE_TOKEN_HEADER = "X-Node-Token"; +//const string X_NODE_TOKEN = "d5b8c0b2-81f6-4421-80d0-44eb2093e616"; \ No newline at end of file diff --git a/LaaProductionWeb/LaaProduction.Console/sentinel-data.json b/LaaProductionWeb/LaaProduction.Console/sentinel-data.json deleted file mode 100644 index 0de2443c..00000000 --- a/LaaProductionWeb/LaaProduction.Console/sentinel-data.json +++ /dev/null @@ -1,89305 +0,0 @@ -{ - "$type": "System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Object, mscorlib]], mscorlib", - "TryGetUniqueProductionData": { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelProductionData, LaaProduction.Data.Cordonel", - "AuftragNr": 71151531, - "PositionNr": 20, - "FertigungsauftragNr": 3184020, - "IdentNr": 3100101, - "RegionSizeKey": "IE", - "MeterSizeName": "DN80", - "MeterSizeValue": 3, - "KundeneigeneSerienNr": "8 SEN20 2271 8451", - "SerienNr": 22718451, - "PcbId": 212120036, - "Address": 10402001154, - "PruefgangNr": 2016072410, - "StatusFertigung": 30 - }, - "TryGetEOLProgressModel": { - "$type": "LaaProduction.Data.Cordonel.Models.EOLProgressModel, LaaProduction.Data.Cordonel", - "Id": 357, - "PcbId": 212120036, - "StartDate": "2024-11-26T13:37:11.687", - "StandardRequirementId": 24, - "StandardRequirementVersion": 21, - "SpecialRequirementId": 3, - "SpecialRequirementVersion": 12, - "RequirementRequestChecked": "OK", - "RequirementPcbIdChecked": "OK", - "RequirementOrderChecked": "OK", - "RequirementRegionChecked": "OK", - "ProductionStatusMeterSize": "DN80", - "ProductionStatusLutCrc": "0x468D", - "ProductionStatusFwVersion": "R1.3.0B", - "ProductionStatusDrainedBatteryLoad": 11.26789852631579, - "ProductionStatusBatteryLoadChecked": "OK", - "ProductionStatusRemainingLifeTime": 26.494942761804989, - "ProductionStatusRemainingLifeTimeChecked": "OK", - "ProductionStatusZeroFlowChecked": "NA", - "ProductionStatusCalibrationChecked": "NA", - "ParametrizationDoneChecked": "OK", - "StoreConfigurationDoneChecked": "OK", - "RebootDoneChecked": "OK", - "ParametrizationCompareChecked": "OK", - "RadioCheckId": 11162, - "FinalRadioSystemState": 2, - "FinalRadioSystemStateCheck": "OK", - "PasswordFileInstalledCheck": "OK", - "AttachmentsChecked": "OK", - "EOLCompleteDate": "2024-11-26T13:41:19.773", - "EOLSoftwareNameAndVersion": "Cordonel - Versandfertigmachen - Version 2.6.10.24479", - "SAPExportDone": "OK", - "SentinelCompleted": "OK", - "SentinelCompletedDate": "2024-11-26T13:38:33.043" - }, - "TryGetCordonelRequirements": { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRequirements, LaaProduction.Data.Cordonel", - "SpecialId": 3, - "SpecialVersion": 12, - "StandardId": 24, - "StandardVersion": 21, - "Region": "EMEA", - "MeterSize": "DN80", - "OuterProductionOrderNr": 3184020, - "ProductionOrderNr": 3184020, - "OuterPcbId": 212120036, - "PcbId": 212120036, - "SkipCalibration": true, - "SkipRadioCheck": false, - "FwVersion": "R1.3.0B", - "LutCrc": "0x468D", - "RequiredLifeTimeYearsAssembly": 22.0, - "RequiredLifeTimeYearsShipping": 21.0, - "MaxDrainedBatteryLoadPercentAssembly": 4.0, - "MaxDrainedBatteryLoadPercentShipping": 12.0, - "MaxStorageMonths": 42.0, - "QuiescentCurrent_uA": null, - "EstimatedProductionBatteryLoadPercent": null, - "RequirementTimestamp": "2024-11-18T13:41:50.62", - "ApprovalName": "Thomas Wiedebusch", - "ApprovalComment": "Lagerzeitverlängerung von 40 auf 42 Monate", - "IsSpecialActive": true, - "IsStandardActive": true - }, - "TryGetProgrammingParameters": { - "$type": "System.Collections.Generic.Dictionary`2[[System.Byte, mscorlib],[System.Collections.Generic.Dictionary`2[[System.Byte, mscorlib],[System.Byte[], mscorlib]], mscorlib]], mscorlib", - "16": { - "$type": "System.Collections.Generic.Dictionary`2[[System.Byte, mscorlib],[System.Byte[], mscorlib]], mscorlib", - "10": { - "$type": "System.Byte[], mscorlib", - "$value": "Ag32Fw==" - }, - "44": { - "$type": "System.Byte[], mscorlib", - "$value": "Dp+sxqDh7xw7J6SbrCFlNQ==" - }, - "7": { - "$type": "System.Byte[], mscorlib", - "$value": "LQAAAA==" - }, - "62": { - "$type": "System.Byte[], mscorlib", - "$value": "LwAAAA==" - }, - "63": { - "$type": "System.Byte[], mscorlib", - "$value": "LQsAAA==" - }, - "64": { - "$type": "System.Byte[], mscorlib", - "$value": "LwsAAA==" - }, - "5": { - "$type": "System.Byte[], mscorlib", - "$value": "ZAMAAA==" - }, - "4": { - "$type": "System.Byte[], mscorlib", - "$value": "BwAAAA==" - }, - "1": { - "$type": "System.Byte[], mscorlib", - "$value": "EA4AAA==" - }, - "0": { - "$type": "System.Byte[], mscorlib", - "$value": "DwAAAA==" - }, - "3": { - "$type": "System.Byte[], mscorlib", - "$value": "AwAAAA==" - }, - "2": { - "$type": "System.Byte[], mscorlib", - "$value": "AwAAAA==" - }, - "58": { - "$type": "System.Byte[], mscorlib", - "$value": "BQA=" - }, - "61": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "40": { - "$type": "System.Byte[], mscorlib", - "$value": "HQA=" - }, - "53": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "31": { - "$type": "System.Byte[], mscorlib", - "$value": "PAAAAA==" - } - }, - "15": { - "$type": "System.Collections.Generic.Dictionary`2[[System.Byte, mscorlib],[System.Byte[], mscorlib]], mscorlib", - "12": { - "$type": "System.Byte[], mscorlib", - "$value": "AwAAAA==" - }, - "11": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "21": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "10": { - "$type": "System.Byte[], mscorlib", - "$value": "/f///w==" - }, - "0": { - "$type": "System.Byte[], mscorlib", - "$value": "AgA=" - }, - "22": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "55": { - "$type": "System.Byte[], mscorlib", - "$value": "BAA=" - }, - "27": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA8AA==" - }, - "26": { - "$type": "System.Byte[], mscorlib", - "$value": "JgIAAA==" - }, - "53": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAArw==" - }, - "35": { - "$type": "System.Byte[], mscorlib", - "$value": "u4wHAA==" - }, - "36": { - "$type": "System.Byte[], mscorlib", - "$value": "0vpbAg==" - }, - "54": { - "$type": "System.Byte[], mscorlib", - "$value": "AACAJQ==" - }, - "37": { - "$type": "System.Byte[], mscorlib", - "$value": "WItPAQ==" - }, - "56": { - "$type": "System.Byte[], mscorlib", - "$value": "AQA=" - }, - "29": { - "$type": "System.Byte[], mscorlib", - "$value": "gIQeAA==" - }, - "57": { - "$type": "System.Byte[], mscorlib", - "$value": "f60BAA==" - }, - "59": { - "$type": "System.Byte[], mscorlib", - "$value": "3hgCAA==" - }, - "58": { - "$type": "System.Byte[], mscorlib", - "$value": "ACAAAA==" - }, - "7": { - "$type": "System.Byte[], mscorlib", - "$value": "BgAAAA==" - }, - "61": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - "18": { - "$type": "System.Collections.Generic.Dictionary`2[[System.Byte, mscorlib],[System.Byte[], mscorlib]], mscorlib", - "5": { - "$type": "System.Byte[], mscorlib", - "$value": "BAAAAA==" - }, - "3": { - "$type": "System.Byte[], mscorlib", - "$value": "BQAAAA==" - }, - "4": { - "$type": "System.Byte[], mscorlib", - "$value": "CAAAAA==" - }, - "12": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "8": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "10": { - "$type": "System.Byte[], mscorlib", - "$value": "YOoAAA==" - }, - "9": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "2": { - "$type": "System.Byte[], mscorlib", - "$value": "ANQwAA==" - }, - "6": { - "$type": "System.Byte[], mscorlib", - "$value": "AwAAAA==" - }, - "11": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - "9": { - "$type": "System.Collections.Generic.Dictionary`2[[System.Byte, mscorlib],[System.Byte[], mscorlib]], mscorlib", - "9": { - "$type": "System.Byte[], mscorlib", - "$value": "U4AAAA==" - }, - "10": { - "$type": "System.Byte[], mscorlib", - "$value": "3B8AAA==" - }, - "14": { - "$type": "System.Byte[], mscorlib", - "$value": "wE4AAA==" - }, - "21": { - "$type": "System.Byte[], mscorlib", - "$value": "BQAAAA==" - }, - "15": { - "$type": "System.Byte[], mscorlib", - "$value": "CAcAAA==" - }, - "24": { - "$type": "System.Byte[], mscorlib", - "$value": "9AEAAA==" - }, - "25": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - }, - "26": { - "$type": "System.Byte[], mscorlib", - "$value": "FAAAAA==" - }, - "27": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - }, - "28": { - "$type": "System.Byte[], mscorlib", - "$value": "AGoYAA==" - }, - "29": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - }, - "30": { - "$type": "System.Byte[], mscorlib", - "$value": "MHUAAA==" - }, - "31": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - }, - "20": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "19": { - "$type": "System.Byte[], mscorlib", - "$value": "AQA=" - }, - "18": { - "$type": "System.Byte[], mscorlib", - "$value": "0AAAAA==" - }, - "13": { - "$type": "System.Byte[], mscorlib", - "$value": "AMxVAQ==" - }, - "22": { - "$type": "System.Byte[], mscorlib", - "$value": "AGsDAA==" - }, - "35": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - "17": { - "$type": "System.Collections.Generic.Dictionary`2[[System.Byte, mscorlib],[System.Byte[], mscorlib]], mscorlib", - "0": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - }, - "1": { - "$type": "System.Byte[], mscorlib", - "$value": "PAAAAA==" - }, - "2": { - "$type": "System.Byte[], mscorlib", - "$value": "BQA=" - }, - "5": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "3": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - }, - "4": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - } - }, - "1": { - "$type": "System.Collections.Generic.Dictionary`2[[System.Byte, mscorlib],[System.Byte[], mscorlib]], mscorlib", - "11": { - "$type": "System.Byte[], mscorlib", - "$value": "AAaYJQ==" - }, - "4": { - "$type": "System.Byte[], mscorlib", - "$value": "AgAAAA==" - } - }, - "0": { - "$type": "System.Collections.Generic.Dictionary`2[[System.Byte, mscorlib],[System.Byte[], mscorlib]], mscorlib", - "14": { - "$type": "System.Byte[], mscorlib", - "$value": "/gAAAA==" - } - }, - "20": { - "$type": "System.Collections.Generic.Dictionary`2[[System.Byte, mscorlib],[System.Byte[], mscorlib]], mscorlib", - "0": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "1": { - "$type": "System.Byte[], mscorlib", - "$value": "AwA=" - } - } - }, - "TryGetCordonelAppsAndRegisterValues": { - "$type": "LaaPackages.Features.Cordonel.CordonelAppsDictionary, LaaPackages.Features.Cordonel", - "CUSTOMER": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 9, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Name": "CUSTOMER", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "AlarmStatus0": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "AlarmStatus0", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 0-3.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FQAAAA==" - }, - "Value": 21 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 0-3.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FQAAAA==" - }, - "Value": 21 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FQAAAA==" - }, - "IsValueInRange": true - }, - "AlarmStatus1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "AlarmStatus1", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 4-7.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AgAAAA==" - }, - "Value": 2 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 4-7.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AgAAAA==" - }, - "Value": 2 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AgAAAA==" - }, - "IsValueInRange": true - }, - "TriggerAlarmCancel": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "TriggerAlarmCancel", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Any set bits manually clear the corresponding alarm.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Any set bits manually clear the corresponding alarm.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "EQAAAA==" - }, - "Value": 17 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Any set bits manually clear the corresponding alarm.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "EQAAAA==" - }, - "Value": 17 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "EQAAAA==" - }, - "IsValueInRange": true - }, - "AlarmStatus2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "AlarmStatus2", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 8-11.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 8-11.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AlarmStatus3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "AlarmStatus3", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 12-15.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 12-15.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AlarmStatus4": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "AlarmStatus4", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 16-19.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 16-19.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AlarmStatus5": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "AlarmStatus5", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 20-23.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 20-23.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AlarmStatus6": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "AlarmStatus6", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 24-27.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 24-27.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AlarmStatus7": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "AlarmStatus7", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 28-31.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 28-31.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AlarmEnableMask": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "AlarmEnableMask", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which are being monitored.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which are being monitored.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "U4AAAA==" - }, - "Value": 32851 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which are being monitored.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "U4AAAA==" - }, - "Value": 32851 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "U4AAAA==" - }, - "IsValueInRange": true - }, - "AlarmBroadcastMask": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "AlarmBroadcastMask", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which will generate events.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which will generate events.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "3B8AAA==" - }, - "Value": 8156 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which will generate events.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "3B8AAA==" - }, - "Value": 8156 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "3B8AAA==" - }, - "IsValueInRange": true - }, - "AlarmVisualMask": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "AlarmVisualMask", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which are displayed with IDs and the alarm icon.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 110, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which are displayed with IDs and the alarm icon.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/n8AAA==" - }, - "Value": 32766 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which are displayed with IDs and the alarm icon.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/n8AAA==" - }, - "Value": 32766 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/n8AAA==" - }, - "IsValueInRange": true - }, - "AlarmVisualAutoClearMask": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "AlarmVisualAutoClearMask", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Alarms that have their display automatically cleared", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 110, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Alarms that have their display automatically cleared", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Alarms that have their display automatically cleared", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ExcessFlowVolumeThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "ExcessFlowVolumeThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which broken pipe alarm is set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 61, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 639590, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which broken pipe alarm is set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 118 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 639590, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which broken pipe alarm is set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 132 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 639590, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which broken pipe alarm is set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 133, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 639999, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/stVAQ==" - }, - "Value": 22399998 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which broken pipe alarm is set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 133, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 639999, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/stVAQ==" - }, - "Value": 22399998 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/stVAQ==" - }, - "IsValueInRange": true - }, - "LeakTimeThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "LeakTimeThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for leak alarm in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 61, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 10080, - "Maximum": 69632, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for leak alarm in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 118 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 10080, - "Maximum": 69632, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for leak alarm in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 360, - "Maximum": 69632, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "wE4AAA==" - }, - "Value": 20160 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for leak alarm in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 360, - "Maximum": 69632, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "wE4AAA==" - }, - "Value": 20160 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "wE4AAA==" - }, - "IsValueInRange": true - }, - "ReverseFlowTimeThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "ReverseFlowTimeThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of measurements in reverse flow required to set reverse flow alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 61, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of measurements in reverse flow required to set reverse flow alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 142 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of measurements in reverse flow required to set reverse flow alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 143, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "CAc=" - }, - "Value": 1800 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of measurements in reverse flow required to set reverse flow alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 143, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "CAc=" - }, - "Value": 1800 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "CAc=" - }, - "IsValueInRange": true - }, - "Locale": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "Locale", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Timezone in which this application is set to run.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 24, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "0AA=" - }, - "Value": 208 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Timezone in which this application is set to run.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 24, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "0AA=" - }, - "Value": 208 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "0AA=" - }, - "IsValueInRange": true - }, - "AppArrangement": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "AppArrangement", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "A name for the arrangement of applications on the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 130, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "A name for the arrangement of applications on the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 130, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "IsValueInRange": true - }, - "RebootCount": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 20, - "Name": "RebootCount", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of times the meter has rebooted", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 73, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of times the meter has rebooted", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - }, - "Value": 1 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of times the meter has rebooted", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - }, - "Value": 1 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - }, - "IsValueInRange": true - }, - "ExcessFlowTimeThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 21, - "Name": "ExcessFlowTimeThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for broken pipe alarm in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 80, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15, - "Maximum": 69632, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for broken pipe alarm in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 118 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15, - "Maximum": 69632, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for broken pipe alarm in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 180, - "Maximum": 69632, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BQAAAA==" - }, - "Value": 5 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for broken pipe alarm in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 180, - "Maximum": 69632, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BQAAAA==" - }, - "Value": 5 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BQAAAA==" - }, - "IsValueInRange": true - }, - "LeakFlowThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 22, - "Name": "LeakFlowThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which leak alarm can be set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 80, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 12800, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which leak alarm can be set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 118 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 12800, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which leak alarm can be set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 132 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 5529, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which leak alarm can be set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 133, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6399, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/moDAA==" - }, - "Value": 223998 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which leak alarm can be set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 133, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6399, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/moDAA==" - }, - "Value": 223998 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/moDAA==" - }, - "IsValueInRange": true - }, - "MfgCharge": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 23, - "Name": "MfgCharge", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Charge in uAs available in manufacturing (read only)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 84, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": 181440000, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AI7QCg==" - }, - "Value": 181440000 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Charge in uAs available in manufacturing (read only)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 84, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": 181440000, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AI7QCg==" - }, - "Value": 181440000 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AI7QCg==" - }, - "IsValueInRange": true - }, - "TemperatureHighThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 24, - "Name": "TemperatureHighThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "High temperature alarm threshold in 0.1°C", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 100 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 500, - "Maximum": 800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "High temperature alarm threshold in 0.1°C", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 101, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 500, - "Maximum": 800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "High temperature alarm threshold in 0.1°C", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 500, - "Maximum": 800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "9AEAAA==" - }, - "Value": 500 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "High temperature alarm threshold in 0.1°C", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 500, - "Maximum": 800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "9AEAAA==" - }, - "Value": 500 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "9AEAAA==" - }, - "IsValueInRange": true - }, - "TemperatureHighDelay": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 25, - "Name": "TemperatureHighDelay", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for high temperature alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for high temperature alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - }, - "Value": 300 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for high temperature alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - }, - "Value": 300 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - }, - "IsValueInRange": true - }, - "TemperatureLowThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 26, - "Name": "TemperatureLowThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Low temperature alarm threshold in 0.1°C", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 100 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Low temperature alarm threshold in 0.1°C", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 101, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Low temperature alarm threshold in 0.1°C", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FAAAAA==" - }, - "Value": 20 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Low temperature alarm threshold in 0.1°C", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FAAAAA==" - }, - "Value": 20 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FAAAAA==" - }, - "IsValueInRange": true - }, - "TemperatureLowDelay": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 27, - "Name": "TemperatureLowDelay", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for low temperature alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for low temperature alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - }, - "Value": 300 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for low temperature alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - }, - "Value": 300 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - }, - "IsValueInRange": true - }, - "PressureHighThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 28, - "Name": "PressureHighThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "High pressure alarm threshold in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1600000, - "Maximum": 2550000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "High pressure alarm threshold in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 121 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1600000, - "Maximum": 2550000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "High pressure alarm threshold in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 122, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1600000, - "Maximum": 2550000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AGoYAA==" - }, - "Value": 1600000 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "High pressure alarm threshold in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 122, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1600000, - "Maximum": 2550000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AGoYAA==" - }, - "Value": 1600000 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AGoYAA==" - }, - "IsValueInRange": true - }, - "PressureHighDelay": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 29, - "Name": "PressureHighDelay", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for high pressure alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 300, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for high pressure alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 118 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 300, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for high pressure alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - }, - "Value": 300 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for high pressure alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - }, - "Value": 300 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - }, - "IsValueInRange": true - }, - "PressureLowThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 30, - "Name": "PressureLowThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Low pressure alarm threshold in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30000, - "Maximum": 2550000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Low pressure alarm threshold in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 121 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30000, - "Maximum": 2550000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Low pressure alarm threshold in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 122, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30000, - "Maximum": 2550000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "MHUAAA==" - }, - "Value": 30000 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Low pressure alarm threshold in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 122, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30000, - "Maximum": 2550000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "MHUAAA==" - }, - "Value": 30000 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "MHUAAA==" - }, - "IsValueInRange": true - }, - "PressureLowDelay": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 31, - "Name": "PressureLowDelay", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for low pressure alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 300, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for low pressure alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 118 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 300, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for low pressure alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - }, - "Value": 300 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for low pressure alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - }, - "Value": 300 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - }, - "IsValueInRange": true - }, - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 32, - "Name": "StoreConfiguration", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Store all configuration items in non-volatile memory.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 130 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Store all configuration items in non-volatile memory.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 131, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Store all configuration items in non-volatile memory.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 131, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "SerialNumber": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 33, - "Name": "SerialNumber", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Customer serial number string", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 139, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Customer serial number string", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 139, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "BackupCalendarSeconds": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 34, - "Name": "BackupCalendarSeconds", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "TIME", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 0, - "Lvl8": 0 - }, - "Description": "Internal backup of calendar seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 145, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.TIME, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "00:00:00" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "TIME", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 0, - "Lvl8": 0 - }, - "Description": "Internal backup of calendar seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 145, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.TIME, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "00:00:00" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "InstallationTime": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 35, - "Name": "InstallationTime", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "TIME", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time meter was determined to have been installed. 0 means not installed", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 147, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.TIME, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "00:00:00" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "TIME", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time meter was determined to have been installed. 0 means not installed", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 147, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.TIME, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "00:00:00" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "LocaleDecimalPoint": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 36, - "Name": "LocaleDecimalPoint", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Read to view the string used as a decimal point for this locale", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 151, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAAAAA==" - }, - "Value": ",\u0000\u0000\u0000" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Read to view the string used as a decimal point for this locale", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 151, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAAAAA==" - }, - "Value": ",\u0000\u0000\u0000" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAAAAA==" - }, - "IsValueInRange": true - }, - "LocaleThousandsSeparator": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 37, - "Name": "LocaleThousandsSeparator", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Read to view the string used as a thousands separarator for this locale", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 151, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Read to view the string used as a thousands separarator for this locale", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 151, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "REBOOT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "REBOOT", - "Action": null, - "Description": null - }, - "REBOOT_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "REBOOT_STOP", - "Action": null, - "Description": null - }, - "LOW_BATTERY": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "LOW_BATTERY", - "Action": null, - "Description": null - }, - "LOW_BATTERY_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "LOW_BATTERY_STOP", - "Action": null, - "Description": null - }, - "VERY_LOW_BATTERY": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "VERY_LOW_BATTERY", - "Action": null, - "Description": null - }, - "VERY_LOW_BATTERY_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "VERY_LOW_BATTERY_STOP", - "Action": null, - "Description": null - }, - "CONFIG_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "CONFIG_ERROR", - "Action": null, - "Description": null - }, - "CONFIG_ERROR_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "CONFIG_ERROR_STOP", - "Action": null, - "Description": null - }, - "EMPTY_PIPE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "EMPTY_PIPE", - "Action": null, - "Description": null - }, - "EMPTY_PIPE_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "EMPTY_PIPE_STOP", - "Action": null, - "Description": null - }, - "MAGNETIC_TAMPER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "MAGNETIC_TAMPER", - "Action": null, - "Description": null - }, - "MAGNETIC_TAMPER_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "MAGNETIC_TAMPER_STOP", - "Action": null, - "Description": null - }, - "REVERSE_FLOW": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "REVERSE_FLOW", - "Action": null, - "Description": null - }, - "REVERSE_FLOW_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "REVERSE_FLOW_STOP", - "Action": null, - "Description": null - }, - "SUSPECT_LEAK": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "SUSPECT_LEAK", - "Action": null, - "Description": null - }, - "SUSPECT_LEAK_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "SUSPECT_LEAK_STOP", - "Action": null, - "Description": null - }, - "BROKEN_PIPE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "BROKEN_PIPE", - "Action": null, - "Description": null - }, - "BROKEN_PIPE_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "BROKEN_PIPE_STOP", - "Action": null, - "Description": null - }, - "LOW_PRESSURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "LOW_PRESSURE", - "Action": null, - "Description": null - }, - "LOW_PRESSURE_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "LOW_PRESSURE_STOP", - "Action": null, - "Description": null - }, - "HIGH_PRESSURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 20, - "Name": "HIGH_PRESSURE", - "Action": null, - "Description": null - }, - "HIGH_PRESSURE_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 21, - "Name": "HIGH_PRESSURE_STOP", - "Action": null, - "Description": null - }, - "LOW_TEMPERATURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 22, - "Name": "LOW_TEMPERATURE", - "Action": null, - "Description": null - }, - "LOW_TEMPERATURE_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 23, - "Name": "LOW_TEMPERATURE_STOP", - "Action": null, - "Description": null - }, - "HIGH_TEMPERATURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 24, - "Name": "HIGH_TEMPERATURE", - "Action": null, - "Description": null - }, - "HIGH_TEMPERATURE_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 25, - "Name": "HIGH_TEMPERATURE_STOP", - "Action": null, - "Description": null - }, - "RADIO_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 26, - "Name": "RADIO_ERROR", - "Action": null, - "Description": null - }, - "RADIO_ERROR_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 27, - "Name": "RADIO_ERROR_STOP", - "Action": null, - "Description": null - }, - "METROLOGY_PARAMS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 28, - "Name": "METROLOGY_PARAMS", - "Action": null, - "Description": null - }, - "METROLOGY_PARAMS_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 29, - "Name": "METROLOGY_PARAMS_STOP", - "Action": null, - "Description": null - }, - "METROLOGY_MEASURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 30, - "Name": "METROLOGY_MEASURE", - "Action": null, - "Description": null - }, - "METROLOGY_MEASURE_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 31, - "Name": "METROLOGY_MEASURE_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_6": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 32, - "Name": "UNALLOCATED_6", - "Action": null, - "Description": null - }, - "UNALLOCATED_6_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 33, - "Name": "UNALLOCATED_6_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_7": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 34, - "Name": "UNALLOCATED_7", - "Action": null, - "Description": null - }, - "UNALLOCATED_7_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 35, - "Name": "UNALLOCATED_7_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_8": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 36, - "Name": "UNALLOCATED_8", - "Action": null, - "Description": null - }, - "UNALLOCATED_8_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 37, - "Name": "UNALLOCATED_8_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_9": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 38, - "Name": "UNALLOCATED_9", - "Action": null, - "Description": null - }, - "UNALLOCATED_9_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 39, - "Name": "UNALLOCATED_9_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_10": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 40, - "Name": "UNALLOCATED_10", - "Action": null, - "Description": null - }, - "UNALLOCATED_10_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 41, - "Name": "UNALLOCATED_10_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_11": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 42, - "Name": "UNALLOCATED_11", - "Action": null, - "Description": null - }, - "UNALLOCATED_11_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 43, - "Name": "UNALLOCATED_11_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_12": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 44, - "Name": "UNALLOCATED_12", - "Action": null, - "Description": null - }, - "UNALLOCATED_12_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 45, - "Name": "UNALLOCATED_12_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_13": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 46, - "Name": "UNALLOCATED_13", - "Action": null, - "Description": null - }, - "UNALLOCATED_13_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 47, - "Name": "UNALLOCATED_13_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_14": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 48, - "Name": "UNALLOCATED_14", - "Action": null, - "Description": null - }, - "UNALLOCATED_14_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 49, - "Name": "UNALLOCATED_14_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_15": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 50, - "Name": "UNALLOCATED_15", - "Action": null, - "Description": null - }, - "UNALLOCATED_15_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 51, - "Name": "UNALLOCATED_15_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_16": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 52, - "Name": "UNALLOCATED_16", - "Action": null, - "Description": null - }, - "UNALLOCATED_16_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 53, - "Name": "UNALLOCATED_16_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_17": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 54, - "Name": "UNALLOCATED_17", - "Action": null, - "Description": null - }, - "UNALLOCATED_17_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 55, - "Name": "UNALLOCATED_17_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_18": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 56, - "Name": "UNALLOCATED_18", - "Action": null, - "Description": null - }, - "UNALLOCATED_18_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 57, - "Name": "UNALLOCATED_18_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_19": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 58, - "Name": "UNALLOCATED_19", - "Action": null, - "Description": null - }, - "UNALLOCATED_19_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 59, - "Name": "UNALLOCATED_19_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_20": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 60, - "Name": "UNALLOCATED_20", - "Action": null, - "Description": null - }, - "UNALLOCATED_20_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 61, - "Name": "UNALLOCATED_20_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_21": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 62, - "Name": "UNALLOCATED_21", - "Action": null, - "Description": null - }, - "UNALLOCATED_21_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 63, - "Name": "UNALLOCATED_21_STOP", - "Action": null, - "Description": null - }, - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 64, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "LOCALE_UNDEFINED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 65, - "Name": "LOCALE_UNDEFINED", - "Action": null, - "Description": null - }, - "NO_SUCH_ALARM": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 66, - "Name": "NO_SUCH_ALARM", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 67, - "Name": "OUT_OF_RANGE", - "Action": null, - "Description": null - }, - "NOT_IMPLEMENTED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 68, - "Name": "NOT_IMPLEMENTED", - "Action": null, - "Description": null - }, - "BAD_CONFIG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 69, - "Name": "BAD_CONFIG", - "Action": null, - "Description": null - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 70, - "Name": "DID_NOT_STORE", - "Action": null, - "Description": null - }, - "STORE_PENDING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 71, - "Name": "STORE_PENDING", - "Action": null, - "Description": null - }, - "STRING_TOO_LONG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 72, - "Name": "STRING_TOO_LONG", - "Action": null, - "Description": null - } - } - }, - "FUNCTEST": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 10, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Name": "FUNCTEST", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "GP30Test": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "GP30Test", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "LCDTest": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "LCDTest", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "Iloop": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "Iloop", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "Pulse": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "Pulse", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "Pressure": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "Pressure", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "BatteryVoltage": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "BatteryVoltage", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "SupplyVoltage": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "SupplyVoltage", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "Temperature": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "Temperature", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT16", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT16", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "RFID": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "RFID", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "OpticalOutput": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "OpticalOutput", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "Radio": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "Radio", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "MultiTest": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "MultiTest", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "NFCUID": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "NFCUID", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "IsValueInRange": true - }, - "CPUTest": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "CPUTest", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "BAD_CONFIG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "BAD_CONFIG", - "Action": null, - "Description": null - }, - "BAD_TEST": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "BAD_TEST", - "Action": null, - "Description": null - }, - "NO_RESULT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "NO_RESULT", - "Action": null, - "Description": null - } - } - }, - "OPTICALPORT": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 5, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 55 - }, - "Name": "OPTICALPORT", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "BaudRateCapabilities": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "BaudRateCapabilities", - "AppName": "OPTICALPORT", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 55 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Bitmask of supported rates on the given hardware.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Bitmask of supported rates on the given hardware.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PacketSizeCapabilities": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "PacketSizeCapabilities", - "AppName": "OPTICALPORT", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 55 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Bitmask of supported packet sizes.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": 64, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Bitmask of supported packet sizes.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": 64, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ProtocolVersion": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "ProtocolVersion", - "AppName": "OPTICALPORT", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 55 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Version number as fixed point 16.16 format BCD.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Version number as fixed point 16.16 format BCD.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "BaudRateSelected": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "BaudRateSelected", - "AppName": "OPTICALPORT", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 55 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Baud rate in bits per second.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Baud rate in bits per second.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PacketSizeSelected": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "PacketSizeSelected", - "AppName": "OPTICALPORT", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 55 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Packet size in bytes.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Packet size in bytes.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ExternalUartControl": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "ExternalUartControl", - "AppName": "OPTICALPORT", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 55 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 2, - "Lvl2": 2, - "Lvl3": 2, - "Lvl4": 2, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Surrenders the UART to another application", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 49, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 2, - "Lvl2": 2, - "Lvl3": 2, - "Lvl4": 2, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Surrenders the UART to another application", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 49, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "PAYLOAD_COUNT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "PAYLOAD_COUNT", - "Action": null, - "Description": null - }, - "INVALID_SUBREASON": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "INVALID_SUBREASON", - "Action": null, - "Description": null - }, - "INVALID_BAUDRATE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "INVALID_BAUDRATE", - "Action": null, - "Description": null - }, - "INVALID_BUFFERSIZE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "INVALID_BUFFERSIZE", - "Action": null, - "Description": null - }, - "CRCFAILURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "CRCFAILURE", - "Action": null, - "Description": null - }, - "UNRECOGNISEDCMD": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "UNRECOGNISEDCMD", - "Action": null, - "Description": null - }, - "FRAMING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "FRAMING", - "Action": null, - "Description": null - }, - "OVERFLOW": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "OVERFLOW", - "Action": null, - "Description": null - }, - "PACKETTIMEOUT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "PACKETTIMEOUT", - "Action": null, - "Description": null - }, - "INVALIDESCAPE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "INVALIDESCAPE", - "Action": null, - "Description": null - }, - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "TRAINING_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "TRAINING_FAILED", - "Action": null, - "Description": null - }, - "NOBREAK": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "NOBREAK", - "Action": null, - "Description": null - } - } - }, - "SENSUSRADIO": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 16, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Name": "SENSUSRADIO", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "TxInterval": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "TxInterval", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The SensusRF transmission interval in seconds for the BUPs", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "DwA=" - }, - "Value": 15 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The SensusRF transmission interval in seconds for the BUPs", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "DwA=" - }, - "Value": 15 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "DwA=" - }, - "IsValueInRange": true - }, - "OmTxInterval": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "OmTxInterval", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The Open Metering transmission interval in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "EA4=" - }, - "Value": 3600 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The Open Metering transmission interval in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "EA4=" - }, - "Value": 3600 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "EA4=" - }, - "IsValueInRange": true - }, - "LatInterval": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "LatInterval", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The Listen After Talk interval as number 'n'. After every 'n' BUPs follows a BUP-LAT", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "Value": 3 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The Listen After Talk interval as number 'n'. After every 'n' BUPs follows a BUP-LAT", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "Value": 3 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "IsValueInRange": true - }, - "WakeupInterval": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "WakeupInterval", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The Wake Up interval in seconds 's'. Every 's' seconds will the meter sniff for a WakeUp tone. 's' == 0 means active sending and no sniffing", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "Value": 3 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The Wake Up interval in seconds 's'. Every 's' seconds will the meter sniff for a WakeUp tone. 's' == 0 means active sending and no sniffing", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "Value": 3 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "IsValueInRange": true - }, - "MbusState": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "MbusState", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The internal MBus state (Open Metering). A bit oriented value. Do not write if you do not know details", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 7, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Bw==" - }, - "Value": 7 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The internal MBus state (Open Metering). A bit oriented value. Do not write if you do not know details", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 7, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Bw==" - }, - "Value": 7 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Bw==" - }, - "IsValueInRange": true - }, - "FrequencyIndicator": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "FrequencyIndicator", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number that shows the radio frequency used. Normally 433 or 868", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 433, - "Default": 433, - "Maximum": 868, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "ZAM=" - }, - "Value": 868 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number that shows the radio frequency used. Normally 433 or 868", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 433, - "Default": 433, - "Maximum": 868, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "ZAM=" - }, - "Value": 868 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "ZAM=" - }, - "IsValueInRange": true - }, - "FrequencyOffset": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "FrequencyOffset", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A radio frequency calibration parameter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -32768, - "Default": 0, - "Maximum": 32767, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "ZAM=" - }, - "Value": 868 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A radio frequency calibration parameter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -32768, - "Default": 0, - "Maximum": 32767, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "ZAM=" - }, - "Value": 868 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "ZAM=" - }, - "IsValueInRange": true - }, - "PowerLevel": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "PowerLevel", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A parameter for controling the radio power", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LQ==" - }, - "Value": 45 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A parameter for controling the radio power", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LQ==" - }, - "Value": 45 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LQ==" - }, - "IsValueInRange": true - }, - "SystemState": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "SystemState", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The internal System State of the Radio", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ag==" - }, - "Value": 2 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The internal System State of the Radio", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ag==" - }, - "Value": 2 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Ag==" - }, - "IsValueInRange": true - }, - "RadioAddress": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "RadioAddress", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The radio address used by the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ag32Fw==" - }, - "Value": 402001154 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The radio address used by the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ag32Fw==" - }, - "Value": 402001154 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Ag32Fw==" - }, - "IsValueInRange": true - }, - "UtcTimeOffset": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "UtcTimeOffset", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The offset the between meter time and UTC", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -32768, - "Default": 0, - "Maximum": 32767, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The offset the between meter time and UTC", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -32768, - "Default": 0, - "Maximum": 32767, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "SentBytesCounter": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "SentBytesCounter", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of bytes sent during meter lifetime", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of bytes sent during meter lifetime", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "ReceivedBytesCounter": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "ReceivedBytesCounter", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of bytes received during meter lifetime", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of bytes received during meter lifetime", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "ResetCounter": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "ResetCounter", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of resets the application SensusRfRadio has performed over lifetime", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQA=" - }, - "Value": 1 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of resets the application SensusRfRadio has performed over lifetime", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQA=" - }, - "Value": 1 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQA=" - }, - "IsValueInRange": true - }, - "BootLoaderState": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "BootLoaderState", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An internal state (enum) regarding the firmwware update", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An internal state (enum) regarding the firmwware update", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "LeakFlowThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "LeakFlowThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The flow value of the leakage (low flow) detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 25, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "agM=" - }, - "Value": 874 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The flow value of the leakage (low flow) detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 25, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "agM=" - }, - "Value": 874 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "agM=" - }, - "IsValueInRange": true - }, - "LeakFlowTimeThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "LeakFlowTimeThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the leakage (low flow) detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 360, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "wE4=" - }, - "Value": 20160 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the leakage (low flow) detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 360, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "wE4=" - }, - "Value": 20160 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "wE4=" - }, - "IsValueInRange": true - }, - "BrokenPipeFlowThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "BrokenPipeFlowThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The flow value of the broken pipe (high flow) detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2500, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "y1U=" - }, - "Value": 21963 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The flow value of the broken pipe (high flow) detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2500, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "y1U=" - }, - "Value": 21963 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "y1U=" - }, - "IsValueInRange": true - }, - "BrokenPipeFlowTimeThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "BrokenPipeFlowTimeThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the broken pipe (high flow) detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 180, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BQA=" - }, - "Value": 5 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the broken pipe (high flow) detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 180, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BQA=" - }, - "Value": 5 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BQA=" - }, - "IsValueInRange": true - }, - "PressureMaxThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 20, - "Name": "PressureMaxThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The pressure value of the maximum (high) pressure alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 160, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "oA==" - }, - "Value": 160 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The pressure value of the maximum (high) pressure alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 160, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "oA==" - }, - "Value": 160 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "oA==" - }, - "IsValueInRange": true - }, - "PressureMinThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 21, - "Name": "PressureMinThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The pressure value of the minimum (low) pressure alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "Value": 3 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The pressure value of the minimum (low) pressure alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "Value": 3 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "IsValueInRange": true - }, - "PressureLimitTimeMaxThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 22, - "Name": "PressureLimitTimeMaxThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the maximum (high) pressure alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAE=" - }, - "Value": 300 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the maximum (high) pressure alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAE=" - }, - "Value": 300 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAE=" - }, - "IsValueInRange": true - }, - "PressureLimitTimeMinThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 23, - "Name": "PressureLimitTimeMinThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The pressure value of the minimum (low) pressure alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAE=" - }, - "Value": 300 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The pressure value of the minimum (low) pressure alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAE=" - }, - "Value": 300 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAE=" - }, - "IsValueInRange": true - }, - "PressureMeasurePeriod": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 24, - "Name": "PressureMeasurePeriod", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period in seconds with which the pressure is measured", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "PAA=" - }, - "Value": 60 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period in seconds with which the pressure is measured", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "PAA=" - }, - "Value": 60 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "PAA=" - }, - "IsValueInRange": true - }, - "PressureUnit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 25, - "Name": "PressureUnit", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An enum respresenting the unit of pressure (0 = no pressure sensor)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An enum respresenting the unit of pressure (0 = no pressure sensor)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "PressureGaugeOffset": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 26, - "Name": "PressureGaugeOffset", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The gauge offset of the pressure sensor value in mBar", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "9QM=" - }, - "Value": 1013 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The gauge offset of the pressure sensor value in mBar", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "9QM=" - }, - "Value": 1013 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "9QM=" - }, - "IsValueInRange": true - }, - "TemperatureMaxThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 27, - "Name": "TemperatureMaxThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The temperature value of the maximum (high) temperature alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 50, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Mg==" - }, - "Value": 50 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The temperature value of the maximum (high) temperature alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 50, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Mg==" - }, - "Value": 50 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Mg==" - }, - "IsValueInRange": true - }, - "TemperatureMinThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 28, - "Name": "TemperatureMinThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The temperature value of the minimum (low) temperature alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ag==" - }, - "Value": 2 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The temperature value of the minimum (low) temperature alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ag==" - }, - "Value": 2 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Ag==" - }, - "IsValueInRange": true - }, - "TemperatureTimeMaxThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 29, - "Name": "TemperatureTimeMaxThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the maximum (high) temperature alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAE=" - }, - "Value": 300 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the maximum (high) temperature alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAE=" - }, - "Value": 300 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAE=" - }, - "IsValueInRange": true - }, - "TemperatureTimeMinThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 30, - "Name": "TemperatureTimeMinThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the minimum (low) temperature alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAE=" - }, - "Value": 300 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the minimum (low) temperature alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LAE=" - }, - "Value": 300 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAE=" - }, - "IsValueInRange": true - }, - "TemperatureMeasurePeriod": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 31, - "Name": "TemperatureMeasurePeriod", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period in seconds with which the temperature is measured (only 60 is valid)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "PAA=" - }, - "Value": 60 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period in seconds with which the temperature is measured (only 60 is valid)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "PAA=" - }, - "Value": 60 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "PAA=" - }, - "IsValueInRange": true - }, - "TemperatureUnit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 32, - "Name": "TemperatureUnit", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An enum respresenting the unit of temperature (1= Celsius, 2= Fahrenheit)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An enum respresenting the unit of temperature (1= Celsius, 2= Fahrenheit)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "IsValueInRange": true - }, - "PulseOutWidth": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 33, - "Name": "PulseOutWidth", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An enumerator defining the currently active PulseWidth (0 ... 8 for non testmode values and 9 ... 15 for testmode)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 15, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "CAA=" - }, - "Value": 8 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An enumerator defining the currently active PulseWidth (0 ... 8 for non testmode values and 9 ... 15 for testmode)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 15, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "CAA=" - }, - "Value": 8 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "CAA=" - }, - "IsValueInRange": true - }, - "PulseOutDivisor": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 34, - "Name": "PulseOutDivisor", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number representing the pulse weight multiplicator 1, 10, 100 or 1000", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 1000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "ZAA=" - }, - "Value": 100 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number representing the pulse weight multiplicator 1, 10, 100 or 1000", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 1000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "ZAA=" - }, - "Value": 100 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "ZAA=" - }, - "IsValueInRange": true - }, - "PulseOutMode": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 35, - "Name": "PulseOutMode", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An enum (0 to 3) representing the pulse output mode (0= deactivated, ...)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 3, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An enum (0 to 3) representing the pulse output mode (0= deactivated, ...)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 3, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "IsValueInRange": true - }, - "CurrentLoopMax": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 36, - "Name": "CurrentLoopMax", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A parameter regarding the non existing current output", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A parameter regarding the non existing current output", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "CurrentLoopSource": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 37, - "Name": "CurrentLoopSource", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A parameter regarding the non existing current output", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A parameter regarding the non existing current output", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "MainAlarmMask": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 38, - "Name": "MainAlarmMask", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value representing a mask of currently active (1) main alarms. These are the flow and genreral alarms", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 207, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value representing a mask of currently active (1) main alarms. These are the flow and genreral alarms", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 207, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "ExtendedAlarmMask": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 39, - "Name": "ExtendedAlarmMask", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value representing a mask of currently active (1) extended alarms. These are the temperature and pressure related alarms", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value representing a mask of currently active (1) extended alarms. These are the temperature and pressure related alarms", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "HistoricalAlarmsDays": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 40, - "Name": "HistoricalAlarmsDays", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number of days (0 = off) after which alarms are cleared from the alarm byte values when they are no longer active", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 29, - "Maximum": 250, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "HQ==" - }, - "Value": 29 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number of days (0 = off) after which alarms are cleared from the alarm byte values when they are no longer active", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 29, - "Maximum": 250, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "HQ==" - }, - "Value": 29 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "HQ==" - }, - "IsValueInRange": true - }, - "TestModeTime": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 43, - "Name": "TestModeTime", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value in minutes that defines the time the meter will stay in testmode after that mode was started", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value in minutes that defines the time the meter will stay in testmode after that mode was started", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "EncryptionKey": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 44, - "Name": "EncryptionKey", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT128", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The SensusRF encryption key (16 bytes) of the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT128, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Dp+sxqDh7xw7J6SbrCFlNQ==" - }, - "Value": 70974188754242057432434561008121192206 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT128", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The SensusRF encryption key (16 bytes) of the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT128, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Dp+sxqDh7xw7J6SbrCFlNQ==" - }, - "Value": 70974188754242057432434561008121192206 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Dp+sxqDh7xw7J6SbrCFlNQ==" - }, - "IsValueInRange": true - }, - "Authentification": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 45, - "Name": "Authentification", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The SensusRF Authentification PINs (3 PINs of 4 byte each) of the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FDBo0A==" - }, - "Value": 3496488980 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The SensusRF Authentification PINs (3 PINs of 4 byte each) of the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FDBo0A==" - }, - "Value": 3496488980 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FDBo0A==" - }, - "IsValueInRange": true - }, - "UpgFWVersion": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 46, - "Name": "UpgFWVersion", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The version of the complete Meter firmware package as represented by application FlexNetVersion", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "CxM=" - }, - "Value": 4875 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The version of the complete Meter firmware package as represented by application FlexNetVersion", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "CxM=" - }, - "Value": 4875 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "CxM=" - }, - "IsValueInRange": true - }, - "CustomerText": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 47, - "Name": "CustomerText", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An array of 8 bytes of freely programmable SensusRF customer Text", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An array of 8 bytes of freely programmable SensusRF customer Text", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "RadioLastReadTime": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 48, - "Name": "RadioLastReadTime", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint32_t value representing the meter's system DateTime when the radio had last time sent a telegram", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "rTZsLg==" - }, - "Value": 778843821 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint32_t value representing the meter's system DateTime when the radio had last time sent a telegram", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "rTZsLg==" - }, - "Value": 778843821 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "rTZsLg==" - }, - "IsValueInRange": true - }, - "LowBatDateTime": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 49, - "Name": "LowBatDateTime", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint32_t value representing the meter's system DateTime when the radio had detected first the low-battery status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint32_t value representing the meter's system DateTime when the radio had detected first the low-battery status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "VeryLowBatDateTime": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 50, - "Name": "VeryLowBatDateTime", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A copy of the LowBatDateTime", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A copy of the LowBatDateTime", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "Unit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 51, - "Name": "Unit", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value representing the currently active volume unit used by radio", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ew==" - }, - "Value": 19 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value representing the currently active volume unit used by radio", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ew==" - }, - "Value": 19 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Ew==" - }, - "IsValueInRange": true - }, - "ExtendedUnitFlags": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 52, - "Name": "ExtendedUnitFlags", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value representing additional information regarding the unit derived from the volume unit when used for flow or alternate volume", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value representing additional information regarding the unit derived from the volume unit when used for flow or alternate volume", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "OTAControlFlags": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 53, - "Name": "OTAControlFlags", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value normaly never changed regarding general behavior of the firmware related to Over The Air updates", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value normaly never changed regarding general behavior of the firmware related to Over The Air updates", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "Tfx_Structure": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 54, - "Name": "Tfx_Structure", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A complex structure of 84 bytes related to the Tfx mode of the meter respectively the volume channel", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "TxwAAA==" - }, - "Value": 7247 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A complex structure of 84 bytes related to the Tfx mode of the meter respectively the volume channel", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "TxwAAA==" - }, - "Value": 7247 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "TxwAAA==" - }, - "IsValueInRange": true - }, - "Dewa_Structure": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 55, - "Name": "Dewa_Structure", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A structure of 4 uint16_t values used for the customer DEWA", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - }, - "Value": 1 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A structure of 4 uint16_t values used for the customer DEWA", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - }, - "Value": 1 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - }, - "IsValueInRange": true - }, - "DataLogContents": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 56, - "Name": "DataLogContents", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A 4 byte bit mask representing whether the individual data items are logged in the periodic logging (1) or not (0)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 201335811, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - }, - "Value": 201335811 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A 4 byte bit mask representing whether the individual data items are logged in the periodic logging (1) or not (0)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 201335811, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - }, - "Value": 201335811 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - }, - "IsValueInRange": true - }, - "DataLogPeriod": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 57, - "Name": "DataLogPeriod", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number in seconds representing the time period for storing data records into the periodic logging file (memory)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 60, - "Maximum": 1440, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "PAA=" - }, - "Value": 60 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number in seconds representing the time period for storing data records into the periodic logging file (memory)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 60, - "Maximum": 1440, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "PAA=" - }, - "Value": 60 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "PAA=" - }, - "IsValueInRange": true - }, - "AverageFlowPeriod": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 58, - "Name": "AverageFlowPeriod", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number derived automatically from the DataLogPeriod that determins averaging periods for min and max calculations", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 5, - "Maximum": 60, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BQA=" - }, - "Value": 5 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number derived automatically from the DataLogPeriod that determins averaging periods for min and max calculations", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 5, - "Maximum": 60, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BQA=" - }, - "Value": 5 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BQA=" - }, - "IsValueInRange": true - }, - "FixedDateReadingContents": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 59, - "Name": "FixedDateReadingContents", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A 4 byte bit mask representing whether the individual data items are logged in the fixed date logging (1) or not (0)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 201335811, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - }, - "Value": 201335811 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A 4 byte bit mask representing whether the individual data items are logged in the fixed date logging (1) or not (0)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 201335811, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - }, - "Value": 201335811 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - }, - "IsValueInRange": true - }, - "FixedDateDayOfMonth": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 60, - "Name": "FixedDateDayOfMonth", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The day of the month (0 = every day) on which at 00:00 the fixed date logging takes place", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 1, - "Maximum": 28, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The day of the month (0 = every day) on which at 00:00 the fixed date logging takes place", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 1, - "Maximum": 28, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "IsValueInRange": true - }, - "MetroRadioLifeTimeCounter": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 61, - "Name": "MetroRadioLifeTimeCounter", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint32_t counter used originally for debugging during development. Meanwhile out of use", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BgAAAA==" - }, - "Value": 6 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint32_t counter used originally for debugging during development. Meanwhile out of use", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BgAAAA==" - }, - "Value": 6 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BgAAAA==" - }, - "IsValueInRange": true - }, - "PowerLevelOption": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 62, - "Name": "PowerLevelOption", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint8_t value related to the power level used by the radio when an Irda module is present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Lw==" - }, - "Value": 47 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint8_t value related to the power level used by the radio when an Irda module is present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Lw==" - }, - "Value": 47 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Lw==" - }, - "IsValueInRange": true - }, - "ImpedanceCodeNew": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 63, - "Name": "ImpedanceCodeNew", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint16_t value used for adjusting the antenna impedance", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 32767, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LQs=" - }, - "Value": 2861 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint16_t value used for adjusting the antenna impedance", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 32767, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "LQs=" - }, - "Value": 2861 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LQs=" - }, - "IsValueInRange": true - }, - "ImpedanceCodeOption": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 64, - "Name": "ImpedanceCodeOption", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint16_t value used for adjusting the antenna impedance if an Irda module is present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 32767, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Lws=" - }, - "Value": 2863 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint16_t value used for adjusting the antenna impedance if an Irda module is present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 32767, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Lws=" - }, - "Value": 2863 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Lws=" - }, - "IsValueInRange": true - }, - "IrDAModulePresent": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 65, - "Name": "IrDAModulePresent", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A parameter of type bool that signals the presence of an Irda module. The value is controlled by the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": true - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A parameter of type bool that signals the presence of an Irda module. The value is controlled by the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": true - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "IsValueInRange": true - }, - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 66, - "Name": "StoreConfiguration", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write this value to '1' to tell the radio application to store all data into the file system of the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write this value to '1' to tell the radio application to store all data into the file system of the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "LifeTimeSeconds": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 67, - "Name": "LifeTimeSeconds", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of seconds since the radio left the production (Set to 0 at the end of the production proccess)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FQAAAA==" - }, - "Value": 21 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of seconds since the radio left the production (Set to 0 at the end of the production proccess)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FQAAAA==" - }, - "Value": 21 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FQAAAA==" - }, - "IsValueInRange": true - }, - "DutyCycleCredit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 68, - "Name": "DutyCycleCredit", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value (counter) used only during development for release testing", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 412, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4320000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "gJcGAA==" - }, - "Value": 432000 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value (counter) used only during development for release testing", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 412, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4320000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "gJcGAA==" - }, - "Value": 432000 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "gJcGAA==" - }, - "IsValueInRange": true - }, - "ActivityCredit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 69, - "Name": "ActivityCredit", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A counter used to control the radio activity which must not exceed certain regulatory limits", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 412, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "6AMAAA==" - }, - "Value": 1000 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A counter used to control the radio activity which must not exceed certain regulatory limits", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 412, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "6AMAAA==" - }, - "Value": 1000 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "6AMAAA==" - }, - "IsValueInRange": true - }, - "PersistenceGroup1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 70, - "Name": "PersistenceGroup1", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage item for HistoricalErrorLimitCounters Reverse(1, hi) and Leak(0, lo)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 437, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 16711935, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/wD/AA==" - }, - "Value": 16711935 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage item for HistoricalErrorLimitCounters Reverse(1, hi) and Leak(0, lo)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 437, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 16711935, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/wD/AA==" - }, - "Value": 16711935 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/wD/AA==" - }, - "IsValueInRange": true - }, - "PersistenceGroup2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 71, - "Name": "PersistenceGroup2", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage item for HistoricalErrorLimitCounters Magnet(3, hi) and Air(2, lo)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 437, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 16711935, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/wD/AA==" - }, - "Value": 16711935 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage item for HistoricalErrorLimitCounters Magnet(3, hi) and Air(2, lo)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 437, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 16711935, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/wD/AA==" - }, - "Value": 16711935 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/wD/AA==" - }, - "IsValueInRange": true - }, - "PersistenceGroup3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 72, - "Name": "PersistenceGroup3", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage item for HistoricalErrorLimitCounters PressureMin(5, hi) and PressureMax(4, lo)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 437, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 16711935, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/wD/AA==" - }, - "Value": 16711935 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage item for HistoricalErrorLimitCounters PressureMin(5, hi) and PressureMax(4, lo)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 437, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 16711935, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/wD/AA==" - }, - "Value": 16711935 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/wD/AA==" - }, - "IsValueInRange": true - }, - "PersistenceGroup4": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 73, - "Name": "PersistenceGroup4", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage item for HistoricalErrorLimitCounters TempMin(7, hi) and TempMax(6, lo)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 437, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 16711935, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/wD/AA==" - }, - "Value": 16711935 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage item for HistoricalErrorLimitCounters TempMin(7, hi) and TempMax(6, lo)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 437, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 16711935, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/wD/AA==" - }, - "Value": 16711935 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/wD/AA==" - }, - "IsValueInRange": true - }, - "PressureCalibration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 74, - "Name": "PressureCalibration", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "MMC(is uint32_t type, minimum -18, maximum 127 ok?) An uint16_t value to add an offset to the measured pressure value from -1270 to +1270 mBar for field calibration purposes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 483, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "MMC(is uint32_t type, minimum -18, maximum 127 ok?) An uint16_t value to add an offset to the measured pressure value from -1270 to +1270 mBar for field calibration purposes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 483, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "TfxSecondaryChannelInfo_1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 75, - "Name": "TfxSecondaryChannelInfo_1", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "a 6 bytes big complex structure for the Tfx settings of the secondary channel 1 (temperature)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 482, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BUQVIA==" - }, - "Value": 538264581 - }, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "a 6 bytes big complex structure for the Tfx settings of the secondary channel 1 (temperature)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 482, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BUQVIA==" - }, - "Value": 538264581 - }, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BUQVIA==" - }, - "IsValueInRange": false - }, - "TfxSecondaryChannelInfo_2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 76, - "Name": "TfxSecondaryChannelInfo_2", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "a 6 bytes big complex structure for the Tfx settings of the secondary channel 2 (pressure)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 482, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BUQVQA==" - }, - "Value": 1075135493 - }, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "a 6 bytes big complex structure for the Tfx settings of the secondary channel 2 (pressure)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 482, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BUQVQA==" - }, - "Value": 1075135493 - }, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BUQVQA==" - }, - "IsValueInRange": false - }, - "OmsLastMessageCounter": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 77, - "Name": "OmsLastMessageCounter", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An unit32_t value used to support/control the MB_MODE3_OMSv4B transmission uinque MCR", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 499, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An unit32_t value used to support/control the MB_MODE3_OMSv4B transmission uinque MCR", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 499, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "UNKNOWN_PARAMETER", - "Action": "According to the source code no action assigned to this error code", - "Description": "It appears to be not used" - }, - "BAD_CONFIG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "BAD_CONFIG", - "Action": "Writing a new LOG or FDR content to Radio for forwarding to PeriodicLog", - "Description": "A bit mask is written which is not valid (e.g. not all mandatory bits are equal to 1)" - }, - "NO_CHANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "NO_CHANGE", - "Action": "Writing a new parameter value so several functions (e.g. Set HistoricalErrorLimitDays)", - "Description": "The new value has no effect: New value == Old value)" - }, - "STORE_PENDING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "STORE_PENDING", - "Action": "Writing SENSUSRADIO_STORECONFIGURATION to 1 ...", - "Description": "The initiated storing action is still ongoing and the file system is busy. The final status is pending" - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "DID_NOT_STORE", - "Action": "Writing SENSUSRADIO_STORECONFIGURATION to 1 ...", - "Description": "This is a final status. The initiated storing action failed. An alternate status would be 'OK'" - } - } - }, - "CONFIGEXCHANGE": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 4, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Name": "CONFIGEXCHANGE", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "Privilege", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Written to set the login level, followed by the password. Note, this can be read at any login level including 0.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "CA==" - }, - "Value": 8 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Written to set the login level, followed by the password. Note, this can be read at any login level including 0.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "CA==" - }, - "Value": 8 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "CA==" - }, - "IsValueInRange": true - }, - "Password": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "Password", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT96", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 2, - "Lvl2": 2, - "Lvl3": 2, - "Lvl4": 2, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Password for logging in, requires 3 consecutive writes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT96, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT96", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 2, - "Lvl2": 2, - "Lvl3": 2, - "Lvl4": 2, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Password for logging in, requires 3 consecutive writes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT96, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "FOpen": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "FOpen", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to open a file on the meter, handle returned", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "MEYAIA==" - }, - "Value": "0F\u0000 " - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to open a file on the meter, handle returned", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "MEYAIA==" - }, - "Value": "0F\u0000 " - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "MEYAIA==" - }, - "IsValueInRange": true - }, - "FClose": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "FClose", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to close a file on the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to close a file on the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "FRead": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "FRead", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to read bytes from an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Pz8pP0I/Jz9kPz89Pz8/Pyw/UD8/Pw8YJgFsND9zXhF5P1pXNz8/PzM7Pz9kSTs/" - }, - "Value": "??)?B?'?d??=????,?P???\u000f\u0018&\u0001l4?s^\u0011y?ZW7???3;??dI;?" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to read bytes from an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Pz8pP0I/Jz9kPz89Pz8/Pyw/UD8/Pw8YJgFsND9zXhF5P1pXNz8/PzM7Pz9kSTs/" - }, - "Value": "??)?B?'?d??=????,?P???\u000f\u0018&\u0001l4?s^\u0011y?ZW7???3;??dI;?" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Pz8pP0I/Jz9kPz89Pz8/Pyw/UD8/Pw8YJgFsND9zXhF5P1pXNz8/PzM7Pz9kSTs/" - }, - "IsValueInRange": true - }, - "FWrite": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "FWrite", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to write bytes to an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BAAAAA==" - }, - "Value": "\u0004\u0000\u0000\u0000" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to write bytes to an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BAAAAA==" - }, - "Value": "\u0004\u0000\u0000\u0000" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BAAAAA==" - }, - "IsValueInRange": true - }, - "FSeek": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "FSeek", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to seek within an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to seek within an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "FTell": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "FTell", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to determine position within an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BAAAAA==" - }, - "Value": "\u0004\u0000\u0000\u0000" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to determine position within an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BAAAAA==" - }, - "Value": "\u0004\u0000\u0000\u0000" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BAAAAA==" - }, - "IsValueInRange": true - }, - "Remove": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "Remove", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to delete a file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": "" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to delete a file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": "" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "FEOF": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "FEOF", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this determine whether the current position in an open file is the end of the file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": "" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this determine whether the current position in an open file is the end of the file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": "" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "Catalogue": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "Catalogue", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Returns a list of files in the filesystem that matches a string containing wildcards passed in", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 49, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": "" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Returns a list of files in the filesystem that matches a string containing wildcards passed in", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 49, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": "" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "PCBSerialNumber": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "PCBSerialNumber", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "String containing the PCB serial number. Note, this can be read at any login level including 0", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 59, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "MjEyMTIwMDM2AAAA" - }, - "Value": "212120036\u0000\u0000\u0000" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "String containing the PCB serial number. Note, this can be read at any login level including 0", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 59, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "MjEyMTIwMDM2AAAA" - }, - "Value": "212120036\u0000\u0000\u0000" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "MjEyMTIwMDM2AAAA" - }, - "IsValueInRange": true - }, - "ConfigAccessRights": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "ConfigAccessRights", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bitmask of login levels permitted to manipulate dangerous files", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 59, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "gAE=" - }, - "Value": 384 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bitmask of login levels permitted to manipulate dangerous files", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 59, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "gAE=" - }, - "Value": 384 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "gAE=" - }, - "IsValueInRange": true - }, - "FFlush": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "FFlush", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to flush write buffers to an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 66, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": "" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to flush write buffers to an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 66, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": "" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "LOCKED_OUT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "LOCKED_OUT", - "Action": null, - "Description": null - }, - "AUTHENTICATION_FAILURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "AUTHENTICATION_FAILURE", - "Action": null, - "Description": null - }, - "ACCESS_DENIED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "ACCESS_DENIED", - "Action": null, - "Description": null - }, - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "IN_USE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "IN_USE", - "Action": null, - "Description": null - }, - "SIZES_DONT_MATCH": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "SIZES_DONT_MATCH", - "Action": null, - "Description": null - }, - "CANT_READ_CONFIG_FILE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "CANT_READ_CONFIG_FILE", - "Action": null, - "Description": null - }, - "USER_NOT_KNOWN": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "USER_NOT_KNOWN", - "Action": null, - "Description": null - }, - "CANT_CREATE_CONFIG_FILE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "CANT_CREATE_CONFIG_FILE", - "Action": null, - "Description": null - }, - "STORE_DIDNT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "STORE_DIDNT_STORE", - "Action": null, - "Description": null - }, - "STORE_CORRUPT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "STORE_CORRUPT", - "Action": null, - "Description": null - }, - "EXPECTED_WRITE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "EXPECTED_WRITE", - "Action": null, - "Description": null - }, - "EXPECTED_READ": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "EXPECTED_READ", - "Action": null, - "Description": null - }, - "STOP_CYCLING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "STOP_CYCLING", - "Action": null, - "Description": null - }, - "TOO_MANY_OPEN": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "TOO_MANY_OPEN", - "Action": null, - "Description": null - }, - "NEVER_OPENED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "NEVER_OPENED", - "Action": null, - "Description": null - }, - "FILE_PROTECTED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "FILE_PROTECTED", - "Action": null, - "Description": null - }, - "PARTIAL_RECALL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "PARTIAL_RECALL", - "Action": null, - "Description": null - }, - "DEFAULT_PASSWORD_USED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "DEFAULT_PASSWORD_USED", - "Action": null, - "Description": null - } - } - }, - "NFC": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 21, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 62 - }, - "Name": "NFC", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "EraseRMA": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "EraseRMA", - "AppName": "NFC", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 62 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 3 - }, - "Description": "Writing TRUE to this register erases the RMA area", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 62 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 3 - }, - "Description": "Writing TRUE to this register erases the RMA area", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 62 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "ForceUpdate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "ForceUpdate", - "AppName": "NFC", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 62 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write to this to force an update of some data. 0 - NDEF readings, 1 - NDEF details, 2 - RMA details", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 49, - "Last": 62 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write to this to force an update of some data. 0 - NDEF readings, 1 - NDEF details, 2 - RMA details", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 49, - "Last": 62 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "BAD_CONFIG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "BAD_CONFIG", - "Action": null, - "Description": null - }, - "NDEF_WRITE_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "NDEF_WRITE_FAIL", - "Action": null, - "Description": null - }, - "NDEF_VERIFY_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "NDEF_VERIFY_FAIL", - "Action": null, - "Description": null - }, - "NDEF_UPDATE_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "NDEF_UPDATE_FAIL", - "Action": null, - "Description": null - }, - "RMA_WRITE_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "RMA_WRITE_FAIL", - "Action": null, - "Description": null - }, - "RMA_VERIFY_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "RMA_VERIFY_FAIL", - "Action": null, - "Description": null - }, - "RMA_BAD_ENTRY": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "RMA_BAD_ENTRY", - "Action": null, - "Description": null - }, - "INIT_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "INIT_FAIL", - "Action": null, - "Description": null - }, - "NDEF_CONFIG_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "NDEF_CONFIG_FAIL", - "Action": null, - "Description": null - }, - "RMA_CONFIG_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "RMA_CONFIG_FAIL", - "Action": null, - "Description": null - }, - "NDEF_START_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "NDEF_START_FAIL", - "Action": null, - "Description": null - }, - "RMA_START_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "RMA_START_FAIL", - "Action": null, - "Description": null - } - } - }, - "SYSTEM": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 0, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Name": "SYSTEM", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "TriggerUpgrade": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "TriggerUpgrade", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Writing TRUE to this register internally calls SysTriggerUpgrade() then returns the result.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Writing TRUE to this register internally calls SysTriggerUpgrade() then returns the result.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "CheckPresence": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "CheckPresence", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing an application id number allows the version number of that application to be read back.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 150, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": "" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing an application id number allows the version number of that application to be read back.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 150, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": "" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "PCBSerialNumber": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "PCBSerialNumber", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "A string reporting the PCB serial number, this string must be set using production equipment.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 169, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "MjEyMTIwMDM2AAAA" - }, - "Value": "212120036\u0000\u0000\u0000" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "A string reporting the PCB serial number, this string must be set using production equipment.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 169, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "MjEyMTIwMDM2AAAA" - }, - "Value": "212120036\u0000\u0000\u0000" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "MjEyMTIwMDM2AAAA" - }, - "IsValueInRange": true - }, - "CustomerSerialNumber0": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "CustomerSerialNumber0", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A string reported relating to the customer, this string can be written only once after manufacture. If subsequent changes are needed CUSTOMERSERIALNUMBER1 must be used.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 170, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A string reported relating to the customer, this string can be written only once after manufacture. If subsequent changes are needed CUSTOMERSERIALNUMBER1 must be used.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 170, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "CustomerSerialNumber1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "CustomerSerialNumber1", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A string reported relating to the customer, this string can be written only once after manufacture. If subsequent changes are needed CUSTOMERSERIALNUMBER2 must be used.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 170, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A string reported relating to the customer, this string can be written only once after manufacture. If subsequent changes are needed CUSTOMERSERIALNUMBER2 must be used.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 170, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "CustomerSerialNumber2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "CustomerSerialNumber2", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A string reported relating to the customer, this string can be written only once after manufacture. If subsequent changes are needed CUSTOMERSERIALNUMBER3 must be used.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 170, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A string reported relating to the customer, this string can be written only once after manufacture. If subsequent changes are needed CUSTOMERSERIALNUMBER3 must be used.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 170, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "CustomerSerialNumber3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "CustomerSerialNumber3", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A string reported relating to the customer, this string can be written only once after manufacture. This is the last customer serial number change slot.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 170, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A string reported relating to the customer, this string can be written only once after manufacture. This is the last customer serial number change slot.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 170, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "MonotonicSeconds": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "MonotonicSeconds", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The number of seconds since reboot.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 176, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "HwAAAA==" - }, - "Value": 31 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The number of seconds since reboot.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 176, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "HwAAAA==" - }, - "Value": 31 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "HwAAAA==" - }, - "IsValueInRange": true - }, - "CalendarSeconds": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "CalendarSeconds", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "TIME", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of seconds since 01-Jan-2000.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 176, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.TIME, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Y7IAAA==" - }, - "Value": "12:41:07" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "TIME", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of seconds since 01-Jan-2000.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 176, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.TIME, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Y7IAAA==" - }, - "Value": "12:41:07" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Y7IAAA==" - }, - "IsValueInRange": true - }, - "CoreRevision": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "CoreRevision", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "A string reporting the product version string held in the system core binary.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 196, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Q29yZG9uZWwgMS42NQBOPw==" - }, - "Value": "Cordonel 1.65\u0000N?" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "A string reporting the product version string held in the system core binary.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 196, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Q29yZG9uZWwgMS42NQBOPw==" - }, - "Value": "Cordonel 1.65\u0000N?" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Q29yZG9uZWwgMS42NQBOPw==" - }, - "IsValueInRange": true - }, - "DriveCapacity": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "DriveCapacity", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing a drive number returns the drive capacity in bytes, or 0 if the drive is not ready, or an error if the driver is not configured to be present.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 233, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing a drive number returns the drive capacity in bytes, or 0 if the drive is not ready, or an error if the driver is not configured to be present.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 233, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ExitReason": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "ExitReason", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STATUS", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing an application id number allows the exit error number of that application to be read back.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 258, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": null, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STATUS", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing an application id number allows the exit error number of that application to be read back.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 258, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": null, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": false - }, - "CorePlatform": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "CorePlatform", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Reports the instruction set of the hosting microprocessor in b8-15 and allocated platform number in b0-7.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 265, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Reports the instruction set of the hosting microprocessor in b8-15 and allocated platform number in b0-7.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 265, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "CRC": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "CRC", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing an application id number allows the CRC of that application to be read back.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 279, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "1bI=" - }, - "Value": 45781 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing an application id number allows the CRC of that application to be read back.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 279, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "1bI=" - }, - "Value": 45781 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "1bI=" - }, - "IsValueInRange": true - }, - "UpgradePermissions": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "UpgradePermissions", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bitfield of permissions releated to firmware upgrade", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 470, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/g==" - }, - "Value": 254 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bitfield of permissions releated to firmware upgrade", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 470, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/g==" - }, - "Value": 254 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/g==" - }, - "IsValueInRange": true - }, - "CRC32": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "CRC32", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing an application id number allows the 32 bit CRC of that application to be read back.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 529, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing an application id number allows the 32 bit CRC of that application to be read back.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 529, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "OK": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "OK", - "Action": null, - "Description": null - }, - "ZERO_APPS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "ZERO_APPS", - "Action": null, - "Description": null - }, - "NO_MEMORY": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "NO_MEMORY", - "Action": null, - "Description": null - }, - "NOT_IMPLEMENTED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "NOT_IMPLEMENTED", - "Action": null, - "Description": null - }, - "BLOCK_NOT_FOUND": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "BLOCK_NOT_FOUND", - "Action": null, - "Description": null - }, - "NO_SUCH_VAR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "NO_SUCH_VAR", - "Action": null, - "Description": null - }, - "NO_CLIB": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "NO_CLIB", - "Action": null, - "Description": null - }, - "KEY_FAILURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "KEY_FAILURE", - "Action": null, - "Description": null - }, - "NO_SLOTS_FREE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "NO_SLOTS_FREE", - "Action": null, - "Description": null - }, - "VECTOR_OUT_OF_RANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "VECTOR_OUT_OF_RANGE", - "Action": null, - "Description": null - }, - "BAD_VECTOR_RELEASE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "BAD_VECTOR_RELEASE", - "Action": null, - "Description": null - }, - "DRIVER_BUSY": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "DRIVER_BUSY", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "OUT_OF_RANGE", - "Action": null, - "Description": null - }, - "CANT_CANCEL_TICK": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "CANT_CANCEL_TICK", - "Action": null, - "Description": null - }, - "ID_OUT_OF_RANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "ID_OUT_OF_RANGE", - "Action": null, - "Description": null - }, - "HANDLE_OUT_OF_RANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "HANDLE_OUT_OF_RANGE", - "Action": null, - "Description": null - }, - "INCAPABLE_HARDWARE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "INCAPABLE_HARDWARE", - "Action": null, - "Description": null - }, - "ALREADY_OPEN": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "ALREADY_OPEN", - "Action": null, - "Description": null - }, - "STRING_TOO_LONG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "STRING_TOO_LONG", - "Action": null, - "Description": null - }, - "CORRUPT_CONFIGURATION": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "CORRUPT_CONFIGURATION", - "Action": null, - "Description": null - }, - "TIMEOUT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 20, - "Name": "TIMEOUT", - "Action": null, - "Description": null - }, - "NO_PRIVILEGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 21, - "Name": "NO_PRIVILEGE", - "Action": null, - "Description": null - }, - "DEVICE_DORMANT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 22, - "Name": "DEVICE_DORMANT", - "Action": null, - "Description": null - }, - "MEDIA_FAILURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 23, - "Name": "MEDIA_FAILURE", - "Action": null, - "Description": null - }, - "BUFFER_OVERFLOW": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 24, - "Name": "BUFFER_OVERFLOW", - "Action": null, - "Description": null - }, - "UPGRADE_SYNTAX_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 25, - "Name": "UPGRADE_SYNTAX_ERROR", - "Action": null, - "Description": null - }, - "UPGRADE_DEPENDENCY_NOT_MET": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 26, - "Name": "UPGRADE_DEPENDENCY_NOT_MET", - "Action": null, - "Description": null - }, - "UPGRADE_MISSING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 27, - "Name": "UPGRADE_MISSING", - "Action": null, - "Description": null - }, - "UPGRADE_FRAGMENTED_BY_CLIB": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 28, - "Name": "UPGRADE_FRAGMENTED_BY_CLIB", - "Action": null, - "Description": null - }, - "TRUNCATED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 29, - "Name": "TRUNCATED", - "Action": null, - "Description": null - }, - "INVALID_HEADER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 30, - "Name": "INVALID_HEADER", - "Action": null, - "Description": null - }, - "WONT_DELETE_CLIB": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 31, - "Name": "WONT_DELETE_CLIB", - "Action": null, - "Description": null - }, - "BAD_REGISTER_VALUE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 32, - "Name": "BAD_REGISTER_VALUE", - "Action": null, - "Description": null - }, - "NO_CHANGE_MADE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 33, - "Name": "NO_CHANGE_MADE", - "Action": null, - "Description": null - }, - "NOT_ATOMIC": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 34, - "Name": "NOT_ATOMIC", - "Action": null, - "Description": null - }, - "CALENDAR_CHANGED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 35, - "Name": "CALENDAR_CHANGED", - "Action": null, - "Description": null - }, - "WORM_FIELD": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 36, - "Name": "WORM_FIELD", - "Action": null, - "Description": null - }, - "CONVERSION_UNSUPPORTED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 37, - "Name": "CONVERSION_UNSUPPORTED", - "Action": null, - "Description": null - }, - "CPU_PERMISSION_FAULT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 38, - "Name": "CPU_PERMISSION_FAULT", - "Action": null, - "Description": null - }, - "CPU_SOFTWARE_FAULT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 39, - "Name": "CPU_SOFTWARE_FAULT", - "Action": null, - "Description": null - }, - "CPU_DECODE_FAULT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 40, - "Name": "CPU_DECODE_FAULT", - "Action": null, - "Description": null - }, - "CPU_ADDRESS_ACCESS_FAULT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 41, - "Name": "CPU_ADDRESS_ACCESS_FAULT", - "Action": null, - "Description": null - }, - "CPU_UNCAUGHT_FAULT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 42, - "Name": "CPU_UNCAUGHT_FAULT", - "Action": null, - "Description": null - }, - "ACCURACY_LOST": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 43, - "Name": "ACCURACY_LOST", - "Action": null, - "Description": null - }, - "EXIT_FAILURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 44, - "Name": "EXIT_FAILURE", - "Action": null, - "Description": null - }, - "CANT_CANCEL_CALLBACK": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 45, - "Name": "CANT_CANCEL_CALLBACK", - "Action": null, - "Description": null - }, - "RECOVERED_SPACE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 46, - "Name": "RECOVERED_SPACE", - "Action": null, - "Description": null - }, - "DRIVE_FULL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 47, - "Name": "DRIVE_FULL", - "Action": null, - "Description": null - }, - "NO_FILE_HANDLES_AVAILABLE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 48, - "Name": "NO_FILE_HANDLES_AVAILABLE", - "Action": null, - "Description": null - }, - "EXCESSIVE_RESTARTS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 49, - "Name": "EXCESSIVE_RESTARTS", - "Action": null, - "Description": null - }, - "MPU_SETUP_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 50, - "Name": "MPU_SETUP_FAILED", - "Action": null, - "Description": null - }, - "DEVICE_NOT_OPEN": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 51, - "Name": "DEVICE_NOT_OPEN", - "Action": null, - "Description": null - }, - "NO_RESPONSE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 52, - "Name": "NO_RESPONSE", - "Action": null, - "Description": null - }, - "EXIT_WATCHDOG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 53, - "Name": "EXIT_WATCHDOG", - "Action": null, - "Description": null - }, - "WONT_DELETE_SPECIAL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 54, - "Name": "WONT_DELETE_SPECIAL", - "Action": null, - "Description": null - }, - "WONT_UPGRADE_SPECIAL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 55, - "Name": "WONT_UPGRADE_SPECIAL", - "Action": null, - "Description": null - } - } - }, - "METROLOGYASST": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 18, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Name": "METROLOGYASST", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "ILoopMaxFlowRate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "ILoopMaxFlowRate", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The flow rate that gives max output on the current loop", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 5, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The flow rate that gives max output on the current loop", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "gIQeAA==" - }, - "Value": 2000000 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The flow rate that gives max output on the current loop", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "gIQeAA==" - }, - "Value": 2000000 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "gIQeAA==" - }, - "IsValueInRange": true - }, - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "StoreConfiguration", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing TRUE to this register stores the values of the other registers to the non-volatile memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing TRUE to this register stores the values of the other registers to the non-volatile memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing TRUE to this register stores the values of the other registers to the non-volatile memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PulseWeight": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "PulseWeight", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Volume represented by one pulse in ml. If this is zero pulse output will not be enabled", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 1000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Volume represented by one pulse in ml. If this is zero pulse output will not be enabled", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 101 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 1000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Volume represented by one pulse. Units of (2^-5)ml. If this is zero pulse output will not be enabled", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 102, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 32000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "ANQwAA==" - }, - "Value": 3200000 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Volume represented by one pulse. Units of (2^-5)ml. If this is zero pulse output will not be enabled", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 102, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 32000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "ANQwAA==" - }, - "Value": 3200000 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "ANQwAA==" - }, - "IsValueInRange": true - }, - "PulseMode": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "PulseMode", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The way pulses are output on the two available channels. This is an enum of type pulse_mode_t.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The way pulses are output on the two available channels. This is an enum of type pulse_mode_t.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The way pulses are output on the two available channels. This is an enum of type pulse_mode_t.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 7, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BQ==" - }, - "Value": 5 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The way pulses are output on the two available channels. This is an enum of type pulse_mode_t.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 7, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BQ==" - }, - "Value": 5 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BQ==" - }, - "IsValueInRange": true - }, - "PulseLength": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "PulseLength", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The length of a pulse. This is an enum of type pulse_length_t.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 72 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 5, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The length of a pulse. This is an enum of type pulse_length_t.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 73, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The length of a pulse. This is an enum of type pulse_length_t.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "CA==" - }, - "Value": 8 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The length of a pulse. This is an enum of type pulse_length_t.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "CA==" - }, - "Value": 8 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "CA==" - }, - "IsValueInRange": true - }, - "FlowUnits": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "FlowUnits", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of flow rate to display on the LCD. An enum of type displayflowunits_t", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 8, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of flow rate to display on the LCD. An enum of type displayflowunits_t", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BA==" - }, - "Value": 4 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of flow rate to display on the LCD. An enum of type displayflowunits_t", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BA==" - }, - "Value": 4 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BA==" - }, - "IsValueInRange": true - }, - "FlowPoint": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "FlowPoint", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Position of the decimal point on the LCD for flow rate. An enum of type displayflowpoint_t", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 8, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 4, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Position of the decimal point on the LCD for flow rate. An enum of type displayflowpoint_t", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 4, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "Value": 3 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Position of the decimal point on the LCD for flow rate. An enum of type displayflowpoint_t", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 4, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "Value": 3 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "IsValueInRange": true - }, - "ILoopRate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "ILoopRate", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The update rate for the current loop", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 9, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The update rate for the current loop", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The update rate for the current loop", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "TemperatureUnits": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "TemperatureUnits", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Units for displaying temperature on the LCD. 0 – Celcius, 1 – Fahrenheit.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 13, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Units for displaying temperature on the LCD. 0 – Celcius, 1 – Fahrenheit.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Units for displaying temperature on the LCD. 0 – Celcius, 1 – Fahrenheit.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "PressureUnits": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "PressureUnits", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Units for displaying pressure on the LCD. 0 – Mpa, 1 – PSI.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 13, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Units for displaying pressure on the LCD. 0 – Mpa, 1 – PSI.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Units for displaying pressure on the LCD. 0 – Mpa, 1 – PSI.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "PressureRate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "PressureRate", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time between pressure measurements in milliseconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 13, - "Last": 71 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 300000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time between pressure measurements in milliseconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 72, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time between pressure measurements in milliseconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "YOoAAA==" - }, - "Value": 60000 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time between pressure measurements in milliseconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "YOoAAA==" - }, - "Value": 60000 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "YOoAAA==" - }, - "IsValueInRange": true - }, - "PressureOffset": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "PressureOffset", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Value in Pa to subtract from measured value to correct for atmospheric pressure", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 13, - "Last": 58 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Value in Pa to subtract from measured value to correct for atmospheric pressure", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 59, - "Last": 79 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Value in Pa to subtract from measured value to correct for atmospheric pressure", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 80, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2000000, - "Default": 0, - "Maximum": 2000000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Value in Pa to subtract from measured value to correct for atmospheric pressure", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2000000, - "Default": 0, - "Maximum": 2000000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Value in Pa to subtract from measured value to correct for atmospheric pressure", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2000000, - "Default": 0, - "Maximum": 2000000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PressurePresent": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "PressurePresent", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether there is a pressure sensor present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 63, - "Last": 70 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether there is a pressure sensor present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 71, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether there is a pressure sensor present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 71, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "PressureMeasure": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "PressureMeasure", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write TRUE to trigger a pressure measurement, Read to get the latest measured value in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 65, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write TRUE to trigger a pressure measurement, Read to get the latest measured value in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 65, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "LatestFlowRate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "LatestFlowRate", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Returns the latest flow rate. Write 0 to change scaling to internal scaling, 1 to change to display scaling", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 92, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Returns the latest flow rate. Write 0 to change scaling to internal scaling, 1 to change to display scaling", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 92, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "GenerateFwdPulses": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "GenerateFwdPulses", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Generate some artificial pulses, used for testing", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 97, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Generate some artificial pulses, used for testing", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 97, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "GenerateRevPulses": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "GenerateRevPulses", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Generate some artificial pulses, used for testing", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 97, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Generate some artificial pulses, used for testing", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 97, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "PulseEvenDistribution": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "PulseEvenDistribution", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Boolean value for whether pulse output is to space the pulses evenly (TRUE) or grouped (FALSE)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": true - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Boolean value for whether pulse output is to space the pulses evenly (TRUE) or grouped (FALSE)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": true - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "IsValueInRange": true - }, - "PulseResolution": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "PulseResolution", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The number of bits of fractional resolution in a pulse event", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 7, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Bw==" - }, - "Value": 7 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The number of bits of fractional resolution in a pulse event", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 7, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Bw==" - }, - "Value": 7 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Bw==" - }, - "IsValueInRange": true - }, - "PressureCalibration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "PressureCalibration", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Value in Pa to add to measured value after recalibration to correct for sensor drift over time", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 108, - "Last": 111 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -1000000, - "Default": 0, - "Maximum": 1000000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Value in Pa to add to measured value after recalibration to correct for sensor drift over time", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 112, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -4000000, - "Default": 0, - "Maximum": 4000000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Value in Pa to add to measured value after recalibration to correct for sensor drift over time", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 112, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -4000000, - "Default": 0, - "Maximum": 4000000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "BAD_CONFIG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "BAD_CONFIG", - "Action": null, - "Description": null - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "DID_NOT_STORE", - "Action": null, - "Description": null - }, - "PENDING_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "PENDING_STORE", - "Action": null, - "Description": null - } - } - }, - "LOGGER": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 8, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Name": "LOGGER", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "Quota": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "Quota", - "AppName": "LOGGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A quota in bytes for the log. The Logger does not apply any policy to how the quota is allocated, this is left as a restriction to be applied on a product by product basis.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4096, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "ABAAAA==" - }, - "Value": 4096 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A quota in bytes for the log. The Logger does not apply any policy to how the quota is allocated, this is left as a restriction to be applied on a product by product basis.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4096, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "ABAAAA==" - }, - "Value": 4096 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "ABAAAA==" - }, - "IsValueInRange": true - }, - "Drive": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "Drive", - "AppName": "LOGGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The drive to write to.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The drive to write to.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "IsValueInRange": true - }, - "TriggerLogFlush": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "TriggerLogFlush", - "AppName": "LOGGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Writing TRUE will force a log flush", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 18 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Writing TRUE will force a log flush", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 18 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "StoreConfiguration", - "AppName": "LOGGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 16, - "Last": 18 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 16, - "Last": 18 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "RESTARTED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "RESTARTED", - "Action": null, - "Description": null - }, - "BLOCK_LISTING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "BLOCK_LISTING", - "Action": null, - "Description": null - }, - "PENDING_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "PENDING_STORE", - "Action": null, - "Description": null - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "DID_NOT_STORE", - "Action": null, - "Description": null - } - } - }, - "TESTMANAGER": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 98, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Name": "TESTMANAGER", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "OutputFile": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "OutputFile", - "AppName": "TESTMANAGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "TestNumber": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "TestNumber", - "AppName": "TESTMANAGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "TestStatus": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "TestStatus", - "AppName": "TESTMANAGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "TrapError": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "TrapError", - "AppName": "TESTMANAGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "TestParameter": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "TestParameter", - "AppName": "TESTMANAGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "FAIL", - "Action": null, - "Description": null - }, - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "READ_ONLY_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "READ_ONLY_PARAMETER", - "Action": null, - "Description": null - }, - "BUSY": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "BUSY", - "Action": null, - "Description": null - }, - "STRING_TOO_LONG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "STRING_TOO_LONG", - "Action": null, - "Description": null - }, - "FOPEN_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "FOPEN_FAIL", - "Action": null, - "Description": null - }, - "FSEEK_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "FSEEK_FAIL", - "Action": null, - "Description": null - }, - "FWRITE_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "FWRITE_FAIL", - "Action": null, - "Description": null - }, - "FCLOSE_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "FCLOSE_FAIL", - "Action": null, - "Description": null - }, - "MALFORMED_FILENAME": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "MALFORMED_FILENAME", - "Action": null, - "Description": null - }, - "UNKNOWN_ACTION": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "UNKNOWN_ACTION", - "Action": null, - "Description": null - }, - "FILEREMOVE_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "FILEREMOVE_FAIL", - "Action": null, - "Description": null - }, - "FREAD_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "FREAD_FAIL", - "Action": null, - "Description": null - } - } - }, - "PERIODICLOG": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 17, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 75 - }, - "Name": "PERIODICLOG", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "DataLogContents": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "DataLogContents", - "AppName": "PERIODICLOG", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 75 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit Mask of the items to store in LOG memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 201335811, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - }, - "Value": 201335811 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit Mask of the items to store in LOG memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 201335811, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - }, - "Value": 201335811 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - }, - "IsValueInRange": true - }, - "DataLogPeriod": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "DataLogPeriod", - "AppName": "PERIODICLOG", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 75 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage Period of the LOG memory in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 60, - "Maximum": 1440, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "PAA=" - }, - "Value": 60 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage Period of the LOG memory in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 60, - "Maximum": 1440, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "PAA=" - }, - "Value": 60 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "PAA=" - }, - "IsValueInRange": true - }, - "AverageFlowPeriod": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "AverageFlowPeriod", - "AppName": "PERIODICLOG", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 75 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Averiging period for the Min/Max calculation of LOG&FDR memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 5, - "Maximum": 60, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BQA=" - }, - "Value": 5 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Averiging period for the Min/Max calculation of LOG&FDR memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 5, - "Maximum": 60, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BQA=" - }, - "Value": 5 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BQA=" - }, - "IsValueInRange": true - }, - "FixedDateReadingContents": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "FixedDateReadingContents", - "AppName": "PERIODICLOG", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 75 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit Mask of the items to store in FDR memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 201335811, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - }, - "Value": 201335811 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit Mask of the items to store in FDR memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 201335811, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - }, - "Value": 201335811 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - }, - "IsValueInRange": true - }, - "FixedDateDayOfMonth": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "FixedDateDayOfMonth", - "AppName": "PERIODICLOG", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 75 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The day of month the FDR storage will take place at 00:00", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 1, - "Maximum": 28, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The day of month the FDR storage will take place at 00:00", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 1, - "Maximum": 28, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "IsValueInRange": true - }, - "PeriodicLogLifeTimeCounter": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "PeriodicLogLifeTimeCounter", - "AppName": "PERIODICLOG", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 75 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A counter used for internal purposes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 15, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A counter used for internal purposes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 15, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ResetCounter": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "ResetCounter", - "AppName": "PERIODICLOG", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 75 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A counter to monitor the application resets", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "4QAAAA==" - }, - "Value": 225 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A counter to monitor the application resets", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "4QAAAA==" - }, - "Value": 225 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "4QAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "FOPEN": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "FOPEN", - "Action": "Perform a FOPEN to any of the logging files logdata, fdrdata, evtdata ... ", - "Description": "FOPEN action failed due to any reason (means fopen error)" - }, - "BAD_CONFIG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "BAD_CONFIG", - "Action": "Handle the internal dual logging file access by SensusRfRadio and by PeriodicLogging", - "Description": "Mutual Exclude file access failed due to a wrong internal status order" - }, - "STRING_TOO_LONG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "STRING_TOO_LONG", - "Action": "Currently unused or not define action", - "Description": "Currently not generated or returned" - }, - "FILES_IN_USE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "FILES_IN_USE", - "Action": "Handle the internal dual logging file access by SensusRfRadio and by PeriodicLogging", - "Description": "File access denied because the other party has currently access to the file(s)" - } - } - }, - "POWERMON": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 1, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Name": "POWERMON", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "BatteryVoltage": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "BatteryVoltage", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Measured battery terminal voltage in 1mV units.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ww4=" - }, - "Value": 3675 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Measured battery terminal voltage in 1mV units.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ww4=" - }, - "Value": 3675 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Ww4=" - }, - "IsValueInRange": true - }, - "BatteryManufacturer": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "BatteryManufacturer", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "String describing the battery brand.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "Tadiran", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "VGFkaXJhbgA=" - }, - "Value": "Tadiran\u0000" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "String describing the battery brand.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "Tadiran", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "VGFkaXJhbgA=" - }, - "Value": "Tadiran\u0000" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "VGFkaXJhbgA=" - }, - "IsValueInRange": true - }, - "BatterySize": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "BatterySize", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "One of: 0 = battery absent; 1 = built in; 2 = other; 3 = AA; 4 = AAA; 5 = C; 6 = D; 255 = unknown", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Bg==" - }, - "Value": 6 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "One of: 0 = battery absent; 1 = built in; 2 = other; 3 = AA; 4 = AAA; 5 = C; 6 = D; 255 = unknown", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Bg==" - }, - "Value": 6 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Bg==" - }, - "IsValueInRange": true - }, - "BatteryQuantity": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "BatteryQuantity", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The number of installed batteries.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 59 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": 1, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of installed batteries.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 60, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ag==" - }, - "Value": 2 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of installed batteries.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 60, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ag==" - }, - "Value": 2 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Ag==" - }, - "IsValueInRange": true - }, - "BatteryRatedVoltage": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "BatteryRatedVoltage", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Datasheet terminal voltage in 100mV units as manufactured.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 36, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "JA==" - }, - "Value": 36 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Datasheet terminal voltage in 100mV units as manufactured.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 36, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "JA==" - }, - "Value": 36 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "JA==" - }, - "IsValueInRange": true - }, - "BatteryVoltageMinThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "BatteryVoltageMinThreshold", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Datasheet terminal voltage in 100mV units below which the cell is considered empty.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 28, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "HA==" - }, - "Value": 28 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Datasheet terminal voltage in 100mV units below which the cell is considered empty.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 28, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "HA==" - }, - "Value": 28 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "HA==" - }, - "IsValueInRange": true - }, - "BatterySelection": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "BatterySelection", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Chosen manufacturer from the internal lookup table of known batteries.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Chosen manufacturer from the internal lookup table of known batteries.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "TotalUsedCharge": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "TotalUsedCharge", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Accumulated charge used in uAs.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 24, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "iRDElgMAAAA=" - }, - "Value": 15414333577 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Accumulated charge used in uAs.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 24, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "iRDElgMAAAA=" - }, - "Value": 15414333577 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "iRDElgMAAAA=" - }, - "IsValueInRange": true - }, - "TotalUsedSeconds": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "TotalUsedSeconds", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Elapsed time since manufacture in seconds.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 39, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "IR1UBg==" - }, - "Value": 106175777 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Elapsed time since manufacture in seconds.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 39, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "IR1UBg==" - }, - "Value": 106175777 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "IR1UBg==" - }, - "IsValueInRange": true - }, - "WarnFromClamp": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "WarnFromClamp", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time in seconds for which the projected end time cannot exceed.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 39, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 473040000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAaYJQ==" - }, - "Value": 630720000 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time in seconds for which the projected end time cannot exceed.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 39, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 473040000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAaYJQ==" - }, - "Value": 630720000 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAaYJQ==" - }, - "IsValueInRange": true - }, - "BatteryMilliAHrRating": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "BatteryMilliAHrRating", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Datasheet capacity in mAh units as manufactured.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19000, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "OEo=" - }, - "Value": 19000 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Datasheet capacity in mAh units as manufactured.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19000, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "OEo=" - }, - "Value": 19000 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "OEo=" - }, - "IsValueInRange": true - }, - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "StoreConfiguration", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 61, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 61, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "CriticalRepeatLimit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "CriticalRepeatLimit", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of 15 minute periods of consecutive low battery voltage required for the battery to be deemed critically low", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 66, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 96, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "YA==" - }, - "Value": 96 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of 15 minute periods of consecutive low battery voltage required for the battery to be deemed critically low", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 66, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 96, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "YA==" - }, - "Value": 96 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "YA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "TABLE_FULL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "TABLE_FULL", - "Action": null, - "Description": null - }, - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "OUT_OF_RANGE", - "Action": null, - "Description": null - }, - "STOP_CYCLING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "STOP_CYCLING", - "Action": null, - "Description": null - }, - "TEMPERATURE_LIMIT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "TEMPERATURE_LIMIT", - "Action": null, - "Description": null - }, - "BATTERY_STATUS_CHANGED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "BATTERY_STATUS_CHANGED", - "Action": null, - "Description": null - }, - "BATTERY_CRITICAL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "BATTERY_CRITICAL", - "Action": null, - "Description": null - }, - "PENDING_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "PENDING_STORE", - "Action": null, - "Description": null - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "DID_NOT_STORE", - "Action": null, - "Description": null - } - } - }, - "GENESISFLOW": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 15, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Name": "GENESISFLOW", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "SampleRate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "SampleRate", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate in Hz that each GP30 takes measurements", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 203 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate in Hz that each GP30 takes measurements", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 204, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate in Hz that each GP30 takes measurements", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate in Hz that each GP30 takes measurements", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate in Hz that each GP30 takes measurements", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate in Hz that each GP30 takes measurements", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ag==" - }, - "Value": 2 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate in Hz that each GP30 takes measurements", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ag==" - }, - "Value": 2 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Ag==" - }, - "IsValueInRange": true - }, - "FirstHitLvlUp1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "FirstHitLvlUp1", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "Value": 20 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "Value": 20 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "IsValueInRange": true - }, - "FirstHitLvlUp2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "FirstHitLvlUp2", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "Value": 20 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "Value": 20 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "IsValueInRange": true - }, - "FirstHitLvlUp3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "FirstHitLvlUp3", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "Value": 20 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "Value": 20 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "IsValueInRange": true - }, - "FirstHitLvlDown1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "FirstHitLvlDown1", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "Value": 20 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "Value": 20 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "IsValueInRange": true - }, - "FirstHitLvlDown2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "FirstHitLvlDown2", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "Value": 20 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "Value": 20 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "IsValueInRange": true - }, - "FirstHitLvlDown3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "FirstHitLvlDown3", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "Value": 20 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "Value": 20 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FAA=" - }, - "IsValueInRange": true - }, - "StartHit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "StartHit", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The hit number to consider as the first hit", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The hit number to consider as the first hit", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The hit number to consider as the first hit", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The hit number to consider as the first hit", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The hit number to consider as the first hit", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Bg==" - }, - "Value": 6 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The hit number to consider as the first hit", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Bg==" - }, - "Value": 6 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Bg==" - }, - "IsValueInRange": true - }, - "AmplitudePeakDetectEnd": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "AmplitudePeakDetectEnd", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Where to stop running the amplitude peak detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Where to stop running the amplitude peak detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Where to stop running the amplitude peak detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Where to stop running the amplitude peak detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Where to stop running the amplitude peak detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ew==" - }, - "Value": 19 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Where to stop running the amplitude peak detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ew==" - }, - "Value": 19 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Ew==" - }, - "IsValueInRange": true - }, - "NumFirePulses": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "NumFirePulses", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of pulses to fire for a measurement", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 17, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of pulses to fire for a measurement", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 17, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of pulses to fire for a measurement", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 17, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of pulses to fire for a measurement", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 17, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of pulses to fire for a measurement", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 17, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "EQ==" - }, - "Value": 17 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of pulses to fire for a measurement", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 17, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "EQ==" - }, - "Value": 17 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "EQ==" - }, - "IsValueInRange": true - }, - "DisplayPow10": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "DisplayPow10", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The weight of the lowest display digit as a power of 10. The accepted range of values depends on the LCD present and the DisplayUnits chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 36, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": -6, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The weight of the lowest display digit as a power of 10. The accepted range of values depends on the LCD present and the DisplayUnits chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": -6, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The weight of the lowest display digit as a power of 10. The accepted range of values depends on the LCD present and the DisplayUnits chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": -6, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The weight of the lowest display digit as a power of 10. The accepted range of values depends on the LCD present and the DisplayUnits chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": -6, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The weight of the lowest display digit as a power of 10. The accepted range of values depends on the LCD present and the DisplayUnits chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": -6, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/f8=" - }, - "Value": -3 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The weight of the lowest display digit as a power of 10. The accepted range of values depends on the LCD present and the DisplayUnits chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": -6, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "/f8=" - }, - "Value": -3 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/f8=" - }, - "IsValueInRange": true - }, - "DisplayUnits": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "DisplayUnits", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of volume to display. The accepted range of values depends on the LCD present and the DisplayPow10 chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 36, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of volume to display. The accepted range of values depends on the LCD present and the DisplayPow10 chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of volume to display. The accepted range of values depends on the LCD present and the DisplayPow10 chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of volume to display. The accepted range of values depends on the LCD present and the DisplayPow10 chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of volume to display. The accepted range of values depends on the LCD present and the DisplayPow10 chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of volume to display. The accepted range of values depends on the LCD present and the DisplayPow10 chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "MeterSize": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "MeterSize", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The meter pipe size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 237 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 9, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The meter pipe size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 238, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 17, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The meter pipe size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 17, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The meter pipe size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 17, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The meter pipe size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 17, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The meter pipe size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 17, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "Value": 3 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The meter pipe size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 17, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "Value": 3 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "IsValueInRange": true - }, - "CalFactor1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "CalFactor1", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 200 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 62500, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 201, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ij0=" - }, - "Value": 15650 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ij0=" - }, - "Value": 15650 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Ij0=" - }, - "IsValueInRange": true - }, - "CalFactor2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "CalFactor2", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 200 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 62500, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 201, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ij0=" - }, - "Value": 15650 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ij0=" - }, - "Value": 15650 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Ij0=" - }, - "IsValueInRange": true - }, - "CalFactor3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "CalFactor3", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 200 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 62500, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 201, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ij0=" - }, - "Value": 15650 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Ij0=" - }, - "Value": 15650 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Ij0=" - }, - "IsValueInRange": true - }, - "ZeroOffset1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "ZeroOffset1", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 1 at zero flow. Value is in usual time of flight scaling (ie LS bit is 2^-38 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 132 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 1 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 133, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 1 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 1 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 1 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 1 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "5v///w==" - }, - "Value": -26 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 1 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "5v///w==" - }, - "Value": -26 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "5v///w==" - }, - "IsValueInRange": true - }, - "ZeroOffset2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "ZeroOffset2", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 2 at zero flow. Value is in usual time of flight scaling (ie LS bit is 2^-38 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 132 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 2 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 133, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 2 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 2 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 2 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 2 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "2f///w==" - }, - "Value": -39 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 2 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "2f///w==" - }, - "Value": -39 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "2f///w==" - }, - "IsValueInRange": true - }, - "ZeroOffset3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "ZeroOffset3", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 3 at zero flow. Value is in usual time of flight scaling (ie LS bit is 2^-38 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 132 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 3 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 133, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 3 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 3 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 3 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 3 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "8f///w==" - }, - "Value": -15 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 3 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "8f///w==" - }, - "Value": -15 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "8f///w==" - }, - "IsValueInRange": true - }, - "ScaledBilling": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "ScaledBilling", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The scaled volume value shown on the display. In the units and precision set by DisplayUnits and DisplayPow10 respectively. Decimal point is not represented in this value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 47, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The scaled volume value shown on the display. In the units and precision set by DisplayUnits and DisplayPow10 respectively. Decimal point is not represented in this value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The scaled volume value shown on the display. In the units and precision set by DisplayUnits and DisplayPow10 respectively. Decimal point is not represented in this value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The scaled volume value shown on the display. In the units and precision set by DisplayUnits and DisplayPow10 respectively. Decimal point is not represented in this value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The scaled volume value shown on the display. In the units and precision set by DisplayUnits and DisplayPow10 respectively. Decimal point is not represented in this value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "IsValueInRange": true - }, - "ResetAccumulators": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 20, - "Name": "ResetAccumulators", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 2, - "Lvl2": 2, - "Lvl3": 2, - "Lvl4": 2, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write 1 to reset all accumulated volume to zero", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 47, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write 1 to reset all accumulated volume to zero", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write 1 to reset all accumulated volume to zero", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write 1 to reset all accumulated volume to zero", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write 1 to reset all accumulated volume to zero", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write 1 to reset all accumulated volume to zero", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "ForwardArrow": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 21, - "Name": "ForwardArrow", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow direction. 0 - undecided, 1 - right, 2 - left", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 47, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow direction. 0 - undecided, 1 - right, 2 - left", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow direction. 0 - undecided, 1 - right, 2 - left", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow direction. 0 - undecided, 1 - right, 2 - left", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow direction. 0 - undecided, 1 - right, 2 - left", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow direction. 0 - undecided, 1 - right, 2 - left", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "LedMode": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 22, - "Name": "LedMode", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The type of data output by the green LED", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 47, - "Last": 203 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The type of data output by the green LED", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 204, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The type of data output by the green LED", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The type of data output by the green LED", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The type of data output by the green LED", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The type of data output by the green LED", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The type of data output by the green LED", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "StoreCalibration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 23, - "Name": "StoreCalibration", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store calibration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 54, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store calibration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store calibration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store calibration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store calibration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "UnscaledFwd": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 24, - "Name": "UnscaledFwd", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 54, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "IsValueInRange": true - }, - "UnscaledRev": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 25, - "Name": "UnscaledRev", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The reverse flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 54, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The reverse flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The reverse flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The reverse flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The reverse flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "IsValueInRange": true - }, - "LowFlowThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 26, - "Name": "LowFlowThreshold", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The volume that must pass in LowFlowMaxPeriod for it to be registered as real flow. Units of ml", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 55, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The volume that must pass in LowFlowMaxPeriod for it to be registered as real flow. Units of ml", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The volume that must pass in LowFlowMaxPeriod for it to be registered as real flow. Units of ml", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The volume that must pass in LowFlowMaxPeriod for it to be registered as real flow. Units of ml", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The volume that must pass in LowFlowMaxPeriod for it to be registered as real flow. Units of ml", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "JgIAAA==" - }, - "Value": 550 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The volume that must pass in LowFlowMaxPeriod for it to be registered as real flow. Units of ml", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "JgIAAA==" - }, - "Value": 550 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "JgIAAA==" - }, - "IsValueInRange": true - }, - "LowFlowMaxPeriod": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 27, - "Name": "LowFlowMaxPeriod", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time during which LowFlowThreshold volume must pass for it to be registered as real flow. Units of seconds << 16", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 55, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3932160, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time during which LowFlowThreshold volume must pass for it to be registered as real flow. Units of seconds << 16", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3932160, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time during which LowFlowThreshold volume must pass for it to be registered as real flow. Units of seconds << 16", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3932160, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time during which LowFlowThreshold volume must pass for it to be registered as real flow. Units of seconds << 16", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3932160, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time during which LowFlowThreshold volume must pass for it to be registered as real flow. Units of seconds << 16", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3932160, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA8AA==" - }, - "Value": 3932160 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time during which LowFlowThreshold volume must pass for it to be registered as real flow. Units of seconds << 16", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3932160, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA8AA==" - }, - "Value": 3932160 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA8AA==" - }, - "IsValueInRange": true - }, - "UpdateThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 28, - "Name": "UpdateThreshold", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The amount of flow in ml to accumulate before updating the main scaled accumulators.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 55, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The amount of flow in ml to accumulate before updating the main scaled accumulators.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The amount of flow in ml to accumulate before updating the main scaled accumulators.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The amount of flow in ml to accumulate before updating the main scaled accumulators.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The amount of flow in ml to accumulate before updating the main scaled accumulators.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The amount of flow in ml to accumulate before updating the main scaled accumulators.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ArrowThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 29, - "Name": "ArrowThreshold", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The net volume in ml that must flow in one direction for the forward arrow to be set", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 55, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 5000000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The net volume in ml that must flow in one direction for the forward arrow to be set", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 5000000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The net volume in ml that must flow in one direction for the forward arrow to be set", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 5000000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The net volume in ml that must flow in one direction for the forward arrow to be set", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 5000000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The net volume in ml that must flow in one direction for the forward arrow to be set", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 5000000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "gIQeAA==" - }, - "Value": 2000000 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The net volume in ml that must flow in one direction for the forward arrow to be set", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 5000000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "gIQeAA==" - }, - "Value": 2000000 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "gIQeAA==" - }, - "IsValueInRange": true - }, - "FireBuffer1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 30, - "Name": "FireBuffer1", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 1 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 64, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 1 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 1 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 1 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 1 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 1 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "IsValueInRange": true - }, - "FireBuffer2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 31, - "Name": "FireBuffer2", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 2 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 64, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 2 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 2 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 2 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 2 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 2 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "IsValueInRange": true - }, - "FireBuffer3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 32, - "Name": "FireBuffer3", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 3 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 64, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 3 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 3 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 3 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 3 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 3 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "IsValueInRange": true - }, - "TriggerActive": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 33, - "Name": "TriggerActive", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 2, - "Lvl2": 2, - "Lvl3": 2, - "Lvl4": 2, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write 1 to put GenesisFlow in Active mode. This is the normal measurement mode", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 75, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Active mode. This is the normal measurement mode", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 306 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Active mode. This is the normal measurement mode", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 307, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Active mode. This is the normal measurement mode", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Active mode. This is the normal measurement mode", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Active mode. This is the normal measurement mode", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Active mode. This is the normal measurement mode", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "TriggerIdle": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 34, - "Name": "TriggerIdle", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 0 to put GenesisFlow in Active mode, otherwise put GenesisFlow in Idle mode. Idle mode displays just the number written to TriggerIdle. No measurements are performed. Read returns the number written", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 75, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 0 to put GenesisFlow in Active mode, otherwise put GenesisFlow in Idle mode. Idle mode displays just the number written to TriggerIdle. No measurements are performed. Read returns the number written", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 0 to put GenesisFlow in Active mode, otherwise put GenesisFlow in Idle mode. Idle mode displays just the number written to TriggerIdle. No measurements are performed. Read returns the number written", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 0 to put GenesisFlow in Active mode, otherwise put GenesisFlow in Idle mode. Idle mode displays just the number written to TriggerIdle. No measurements are performed. Read returns the number written", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 0 to put GenesisFlow in Active mode, otherwise put GenesisFlow in Idle mode. Idle mode displays just the number written to TriggerIdle. No measurements are performed. Read returns the number written", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "MaxValidDeltaToF": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 35, - "Name": "MaxValidDeltaToF", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum delta time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 87, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 247390, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum delta time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 309237, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum delta time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 309237, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum delta time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 309237, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum delta time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 309237, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "u4wHAA==" - }, - "Value": 494779 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum delta time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 309237, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "u4wHAA==" - }, - "Value": 494779 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "u4wHAA==" - }, - "IsValueInRange": true - }, - "MaxValidToF": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 36, - "Name": "MaxValidToF", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum absolute time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 87, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 24739011, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum absolute time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 24739011, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum absolute time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 24739011, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum absolute time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 24739011, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum absolute time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 24739011, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "0vpbAg==" - }, - "Value": 39582418 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum absolute time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 24739011, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "0vpbAg==" - }, - "Value": 39582418 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "0vpbAg==" - }, - "IsValueInRange": true - }, - "MinValidToF": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 37, - "Name": "MinValidToF", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The minimum absolute time of flight, below this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 87, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 13743895, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The minimum absolute time of flight, below this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 13743895, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The minimum absolute time of flight, below this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 13743895, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The minimum absolute time of flight, below this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 13743895, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The minimum absolute time of flight, below this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 13743895, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "WItPAQ==" - }, - "Value": 21990232 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The minimum absolute time of flight, below this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 13743895, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "WItPAQ==" - }, - "Value": 21990232 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "WItPAQ==" - }, - "IsValueInRange": true - }, - "FirstHitPercent1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 38, - "Name": "FirstHitPercent1", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 93, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "EQ==" - }, - "Value": 17 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "EQ==" - }, - "Value": 17 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "EQ==" - }, - "IsValueInRange": true - }, - "FirstHitPercent2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 39, - "Name": "FirstHitPercent2", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 93, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "EQ==" - }, - "Value": 17 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "EQ==" - }, - "Value": 17 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "EQ==" - }, - "IsValueInRange": true - }, - "FirstHitPercent3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 40, - "Name": "FirstHitPercent3", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 93, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "EQ==" - }, - "Value": 17 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "EQ==" - }, - "Value": 17 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "EQ==" - }, - "IsValueInRange": true - }, - "FirstHitShift": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 41, - "Name": "FirstHitShift", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value describing how long the amplitude is averaged over for calculating the first hit level. This is the amount each amplitude value is shifted down before being added to the moving average", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 93, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value describing how long the amplitude is averaged over for calculating the first hit level. This is the amount each amplitude value is shifted down before being added to the moving average", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value describing how long the amplitude is averaged over for calculating the first hit level. This is the amount each amplitude value is shifted down before being added to the moving average", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value describing how long the amplitude is averaged over for calculating the first hit level. This is the amount each amplitude value is shifted down before being added to the moving average", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value describing how long the amplitude is averaged over for calculating the first hit level. This is the amount each amplitude value is shifted down before being added to the moving average", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BA==" - }, - "Value": 4 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value describing how long the amplitude is averaged over for calculating the first hit level. This is the amount each amplitude value is shifted down before being added to the moving average", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BA==" - }, - "Value": 4 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BA==" - }, - "IsValueInRange": true - }, - "FirstHitMinimum": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 42, - "Name": "FirstHitMinimum", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum absolute first hit level value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 93, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum absolute first hit level value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum absolute first hit level value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum absolute first hit level value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum absolute first hit level value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FA==" - }, - "Value": 20 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum absolute first hit level value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "FA==" - }, - "Value": 20 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FA==" - }, - "IsValueInRange": true - }, - "ToFErrorLimit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 43, - "Name": "ToFErrorLimit", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of ToF errors to allow before resetting the first hit levels to FirstHitMinimum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 93, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 16, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of ToF errors to allow before resetting the first hit levels to FirstHitMinimum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 16, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of ToF errors to allow before resetting the first hit levels to FirstHitMinimum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 16, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of ToF errors to allow before resetting the first hit levels to FirstHitMinimum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 16, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of ToF errors to allow before resetting the first hit levels to FirstHitMinimum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 16, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "EAAAAA==" - }, - "Value": 16 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of ToF errors to allow before resetting the first hit levels to FirstHitMinimum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 16, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "EAAAAA==" - }, - "Value": 16 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "EAAAAA==" - }, - "IsValueInRange": true - }, - "FirstHitUpdatePeriod": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 44, - "Name": "FirstHitUpdatePeriod", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period (in seconds) between first hit level updates", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 99, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 10, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period (in seconds) between first hit level updates", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 10, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period (in seconds) between first hit level updates", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 10, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period (in seconds) between first hit level updates", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 10, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period (in seconds) between first hit level updates", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 10, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Cg==" - }, - "Value": 10 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period (in seconds) between first hit level updates", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 10, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Cg==" - }, - "Value": 10 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Cg==" - }, - "IsValueInRange": true - }, - "PipeFillingDelay": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 45, - "Name": "PipeFillingDelay", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time (in seconds) to maintain zero flow after leaving empty pipe", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time (in seconds) to maintain zero flow after leaving empty pipe", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time (in seconds) to maintain zero flow after leaving empty pipe", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time (in seconds) to maintain zero flow after leaving empty pipe", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time (in seconds) to maintain zero flow after leaving empty pipe", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Hg==" - }, - "Value": 30 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time (in seconds) to maintain zero flow after leaving empty pipe", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Hg==" - }, - "Value": 30 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Hg==" - }, - "IsValueInRange": true - }, - "ToFTempOffset1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 46, - "Name": "ToFTempOffset1", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 1. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 124, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 1. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 1. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 1. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 1. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "UBEAAA==" - }, - "Value": 4432 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 1. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "UBEAAA==" - }, - "Value": 4432 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "UBEAAA==" - }, - "IsValueInRange": true - }, - "ToFTempOffset2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 47, - "Name": "ToFTempOffset2", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 2. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 124, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 2. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 2. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 2. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 2. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "qeD//w==" - }, - "Value": -8023 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 2. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "qeD//w==" - }, - "Value": -8023 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "qeD//w==" - }, - "IsValueInRange": true - }, - "ToFTempOffset3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 48, - "Name": "ToFTempOffset3", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 3. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 124, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 3. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 3. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 3. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 3. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "73H9/w==" - }, - "Value": -167441 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 3. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "73H9/w==" - }, - "Value": -167441 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "73H9/w==" - }, - "IsValueInRange": true - }, - "ToFTempCalibrate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 49, - "Name": "ToFTempCalibrate", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 2, - "Lvl2": 2, - "Lvl3": 2, - "Lvl4": 2, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write the current temperature to this register to trigger a calibration step. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 124, - "Last": 204 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 270336, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write the current temperature to this register to trigger a calibration step. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 205, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 286720, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write the current temperature to this register to trigger a calibration step. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 286720, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write the current temperature to this register to trigger a calibration step. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 286720, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write the current temperature to this register to trigger a calibration step. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 286720, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write the current temperature to this register to trigger a calibration step. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 286720, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 50, - "Name": "StoreConfiguration", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "SealDisplay": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 51, - "Name": "SealDisplay", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to stop various display related registers being changed. Read back 1 for 'sealed' 0 for 'unsealed'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to stop various display related registers being changed. Read back 1 for 'sealed' 0 for 'unsealed'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to stop various display related registers being changed. Read back 1 for 'sealed' 0 for 'unsealed'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to stop various display related registers being changed. Read back 1 for 'sealed' 0 for 'unsealed'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to stop various display related registers being changed. Read back 1 for 'sealed' 0 for 'unsealed'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": true - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to stop various display related registers being changed. Read back 1 for 'sealed' 0 for 'unsealed'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": true - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "IsValueInRange": true - }, - "TriggerTest": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 52, - "Name": "TriggerTest", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Test mode. This differs from normal measurement mode in that the volume is presented to 3 extra decimal places if possible. Read back 1 for Test mode, 0 otherwise", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 162, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Test mode. This differs from normal measurement mode in that the volume is presented to 3 extra decimal places if possible. Read back 1 for Test mode, 0 otherwise", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Test mode. This differs from normal measurement mode in that the volume is presented to 3 extra decimal places if possible. Read back 1 for Test mode, 0 otherwise", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Test mode. This differs from normal measurement mode in that the volume is presented to 3 extra decimal places if possible. Read back 1 for Test mode, 0 otherwise", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Test mode. This differs from normal measurement mode in that the volume is presented to 3 extra decimal places if possible. Read back 1 for Test mode, 0 otherwise", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Test mode. This differs from normal measurement mode in that the volume is presented to 3 extra decimal places if possible. Read back 1 for Test mode, 0 otherwise", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "MaxValidAmplitude": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 53, - "Name": "MaxValidAmplitude", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Maximum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 168, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2936012800, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Maximum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2936012800, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Maximum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2936012800, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Maximum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2936012800, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Maximum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2936012800, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAArw==" - }, - "Value": 2936012800 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Maximum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2936012800, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAArw==" - }, - "Value": 2936012800 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAArw==" - }, - "IsValueInRange": true - }, - "MinValidAmplitude": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 54, - "Name": "MinValidAmplitude", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 168, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 209715200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 209715200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 209715200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 209715200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 209715200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AACAJQ==" - }, - "Value": 629145600 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 209715200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AACAJQ==" - }, - "Value": 629145600 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AACAJQ==" - }, - "IsValueInRange": true - }, - "HardErrorLimit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 55, - "Name": "HardErrorLimit", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of hard errors to allow before declaring a fatal error", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 176, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of hard errors to allow before declaring a fatal error", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of hard errors to allow before declaring a fatal error", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of hard errors to allow before declaring a fatal error", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of hard errors to allow before declaring a fatal error", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BAA=" - }, - "Value": 4 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of hard errors to allow before declaring a fatal error", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "BAA=" - }, - "Value": 4 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BAA=" - }, - "IsValueInRange": true - }, - "Timeout": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 56, - "Name": "Timeout", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The timeout for an ultrasonic measurement (0 - 128us, 1 - 256us, 2 - 1024us, 3 - 4096us)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 273, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The timeout for an ultrasonic measurement (0 - 128us, 1 - 256us, 2 - 1024us, 3 - 4096us)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The timeout for an ultrasonic measurement (0 - 128us, 1 - 256us, 2 - 1024us, 3 - 4096us)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The timeout for an ultrasonic measurement (0 - 128us, 1 - 256us, 2 - 1024us, 3 - 4096us)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The timeout for an ultrasonic measurement (0 - 128us, 1 - 256us, 2 - 1024us, 3 - 4096us)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "Value": 1 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQ==" - }, - "IsValueInRange": true - }, - "MaxDeltaToFDeviation": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 57, - "Name": "MaxDeltaToFDeviation", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum deviation of a valid delta tof from the recent mean. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 280, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 109951, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum deviation of a valid delta tof from the recent mean. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 109951, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum deviation of a valid delta tof from the recent mean. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 109951, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum deviation of a valid delta tof from the recent mean. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 109951, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "f60BAA==" - }, - "Value": 109951 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum deviation of a valid delta tof from the recent mean. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 109951, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "f60BAA==" - }, - "Value": 109951 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "f60BAA==" - }, - "IsValueInRange": true - }, - "MaxTempRange": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 58, - "Name": "MaxTempRange", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of temperatures between channels before one is rejected. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 289, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 8192, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of temperatures between channels before one is rejected. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 451, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 8192, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of temperatures between channels before one is rejected. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 504, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 8192, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of temperatures between channels before one is rejected. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 8192, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "ACAAAA==" - }, - "Value": 8192 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of temperatures between channels before one is rejected. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 8192, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "ACAAAA==" - }, - "Value": 8192 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "ACAAAA==" - }, - "IsValueInRange": true - }, - "MaxDeltaToFRange": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 59, - "Name": "MaxDeltaToFRange", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of delta time of flight between channels before one is rejected. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 289, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 137438, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of delta time of flight between channels before one is rejected. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 451, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 137438, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of delta time of flight between channels before one is rejected. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 504, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 137438, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of delta time of flight between channels before one is rejected. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 137438, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "3hgCAA==" - }, - "Value": 137438 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of delta time of flight between channels before one is rejected. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 137438, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "3hgCAA==" - }, - "Value": 137438 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "3hgCAA==" - }, - "IsValueInRange": true - }, - "LookupFileCrc": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 60, - "Name": "LookupFileCrc", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Read for the current loaded lookup table CRC, write to set the expected CRC.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 295, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "jUYAAA==" - }, - "Value": 18061 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Read for the current loaded lookup table CRC, write to set the expected CRC.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 295, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "jUYAAA==" - }, - "Value": 18061 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "jUYAAA==" - }, - "IsValueInRange": true - }, - "DisplayLeadingZeros": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 61, - "Name": "DisplayLeadingZeros", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether to display leading zeros on row 2. If false leading zeros will be replaced with a space", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 302, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether to display leading zeros on row 2. If false leading zeros will be replaced with a space", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 302, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "InstallationCorrectionEnabled": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 62, - "Name": "InstallationCorrectionEnabled", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether the installation correction function is enabled or not", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether the installation correction function is enabled or not", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "InstallationDetectionThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 63, - "Name": "InstallationDetectionThreshold", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The threshold in ml for deciding on the meter installation", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 500, - "Maximum": 10000000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The threshold in ml for deciding on the meter installation", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 500, - "Maximum": 10000000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "InstallationType": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 64, - "Name": "InstallationType", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The detected installation type, MS 16 bits is the type of installation, LS 16 bits is the proportion of correction to apply", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 163840, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The detected installation type, MS 16 bits is the type of installation, LS 16 bits is the proportion of correction to apply", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 163840, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "InstallationDetectionStatus": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 65, - "Name": "InstallationDetectionStatus", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Installation detection percentage complete, returns 100 if installation detection isn't running", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 100, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Installation detection percentage complete, returns 100 if installation detection isn't running", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 100, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "FractionalBars": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 66, - "Name": "FractionalBars", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether to display bars above the fractional digits on the LCD (if supported)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether to display bars above the fractional digits on the LCD (if supported)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "CalibrationCount": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 67, - "Name": "CalibrationCount", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "A count of the relevant calibration values, for internal use", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "A count of the relevant calibration values, for internal use", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "DelayedLedOff": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 68, - "Name": "DelayedLedOff", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write the number of seconds in the future to turn off the LED output. This countdown will be cancelled if LedMode is changed during the delay.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 314, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 28800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write the number of seconds in the future to turn off the LED output. This countdown will be cancelled if LedMode is changed during the delay.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 314, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 28800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "BAD_TEST": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "BAD_TEST", - "Action": null, - "Description": null - }, - "BAD_CONFIG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "BAD_CONFIG", - "Action": null, - "Description": null - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "DID_NOT_STORE", - "Action": null, - "Description": null - }, - "STORE_PENDING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "STORE_PENDING", - "Action": null, - "Description": null - }, - "STORE_BUFFER_SIZE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "STORE_BUFFER_SIZE", - "Action": null, - "Description": null - }, - "STRING_TOO_LONG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "STRING_TOO_LONG", - "Action": null, - "Description": null - }, - "BAD_DISPLAY_MODE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "BAD_DISPLAY_MODE", - "Action": null, - "Description": null - }, - "GLASS_TOO_LONG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "GLASS_TOO_LONG", - "Action": null, - "Description": null - }, - "SLOT_NOT_YOURS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "SLOT_NOT_YOURS", - "Action": null, - "Description": null - }, - "SUBLIST_TOO_LONG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "SUBLIST_TOO_LONG", - "Action": null, - "Description": null - }, - "NO_TEMP_SENSOR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "NO_TEMP_SENSOR", - "Action": null, - "Description": null - }, - "UNDER_TEMP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "UNDER_TEMP", - "Action": null, - "Description": null - }, - "LOW_TEMP_WARNING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "LOW_TEMP_WARNING", - "Action": null, - "Description": null - }, - "HIGH_TEMP_WARNING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "HIGH_TEMP_WARNING", - "Action": null, - "Description": null - }, - "OVER_TEMP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "OVER_TEMP", - "Action": null, - "Description": null - }, - "MISMATCHING_LSB": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "MISMATCHING_LSB", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE_PWDIFF": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "OUT_OF_RANGE_PWDIFF", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE_AMPLITUDE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "OUT_OF_RANGE_AMPLITUDE", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE_TOF": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "OUT_OF_RANGE_TOF", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE_DTOF": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "OUT_OF_RANGE_DTOF", - "Action": null, - "Description": null - }, - "TOF_TIMEOUT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 20, - "Name": "TOF_TIMEOUT", - "Action": null, - "Description": null - }, - "CAL_CHANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 21, - "Name": "CAL_CHANGE", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE_INTERVAL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 22, - "Name": "OUT_OF_RANGE_INTERVAL", - "Action": null, - "Description": null - }, - "VALIDATE_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 23, - "Name": "VALIDATE_FAIL", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE_TEMP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 24, - "Name": "OUT_OF_RANGE_TEMP", - "Action": null, - "Description": null - }, - "NOT_READY": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 25, - "Name": "NOT_READY", - "Action": null, - "Description": null - }, - "METROLOGY_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 26, - "Name": "METROLOGY_ERROR", - "Action": null, - "Description": null - }, - "GP30_ID_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 27, - "Name": "GP30_ID_ERROR", - "Action": null, - "Description": null - }, - "GP30_FLAG_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 28, - "Name": "GP30_FLAG_ERROR", - "Action": null, - "Description": null - }, - "GP30_TIMEOUT_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 29, - "Name": "GP30_TIMEOUT_ERROR", - "Action": null, - "Description": null - }, - "GP30_REQUEST_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 30, - "Name": "GP30_REQUEST_ERROR", - "Action": null, - "Description": null - }, - "GP30_SEQ_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 31, - "Name": "GP30_SEQ_ERROR", - "Action": null, - "Description": null - }, - "VALUE_SEALED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 32, - "Name": "VALUE_SEALED", - "Action": null, - "Description": null - }, - "IN_TEST_MODE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 33, - "Name": "IN_TEST_MODE", - "Action": null, - "Description": null - }, - "UNKNOWN_STATE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 34, - "Name": "UNKNOWN_STATE", - "Action": null, - "Description": null - }, - "DISPLAY_INIT_SUCCEEDED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 35, - "Name": "DISPLAY_INIT_SUCCEEDED", - "Action": null, - "Description": null - }, - "DISPLAY_INIT_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 36, - "Name": "DISPLAY_INIT_FAILED", - "Action": null, - "Description": null - }, - "GP30_INIT_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 37, - "Name": "GP30_INIT_FAILED", - "Action": null, - "Description": null - }, - "START_TIMER_SUCCEEDED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 38, - "Name": "START_TIMER_SUCCEEDED", - "Action": null, - "Description": null - }, - "START_TIMER_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 39, - "Name": "START_TIMER_FAILED", - "Action": null, - "Description": null - }, - "VOLUME_STORE_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 40, - "Name": "VOLUME_STORE_FAILED", - "Action": null, - "Description": null - }, - "EMPTY_PIPE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 41, - "Name": "EMPTY_PIPE", - "Action": null, - "Description": null - }, - "PARAMETER_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 42, - "Name": "PARAMETER_ERROR", - "Action": null, - "Description": null - }, - "GP30_INTERNAL_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 43, - "Name": "GP30_INTERNAL_ERROR", - "Action": null, - "Description": null - }, - "GLASS_TOO_SHORT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 44, - "Name": "GLASS_TOO_SHORT", - "Action": null, - "Description": null - }, - "STORE_CAL_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 45, - "Name": "STORE_CAL_FAILED", - "Action": null, - "Description": null - }, - "STORE_CONF_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 46, - "Name": "STORE_CONF_FAILED", - "Action": null, - "Description": null - }, - "MODE_CHANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 47, - "Name": "MODE_CHANGE", - "Action": null, - "Description": null - }, - "BAD_POW10": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 48, - "Name": "BAD_POW10", - "Action": null, - "Description": null - }, - "BAD_DECIMAL_SEPARATOR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 49, - "Name": "BAD_DECIMAL_SEPARATOR", - "Action": null, - "Description": null - }, - "BAD_UNITS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 50, - "Name": "BAD_UNITS", - "Action": null, - "Description": null - }, - "BAD_ICONS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 51, - "Name": "BAD_ICONS", - "Action": null, - "Description": null - }, - "BAD_THOUSAND_SEPARATOR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 52, - "Name": "BAD_THOUSAND_SEPARATOR", - "Action": null, - "Description": null - }, - "NEW_LOCALE_REJECTED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 53, - "Name": "NEW_LOCALE_REJECTED", - "Action": null, - "Description": null - }, - "SET_ACCUMULATORS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 54, - "Name": "SET_ACCUMULATORS", - "Action": null, - "Description": null - }, - "SEAL_OPENED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 55, - "Name": "SEAL_OPENED", - "Action": null, - "Description": null - }, - "CALIBRATION_RECALL_INCOMPLETE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 56, - "Name": "CALIBRATION_RECALL_INCOMPLETE", - "Action": null, - "Description": null - }, - "BAD_AMR_SETTINGS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 57, - "Name": "BAD_AMR_SETTINGS", - "Action": null, - "Description": null - }, - "SUSPECT_CYCLE_SKIP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 58, - "Name": "SUSPECT_CYCLE_SKIP", - "Action": null, - "Description": null - }, - "LOOKUP_FILE_LOADED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 59, - "Name": "LOOKUP_FILE_LOADED", - "Action": null, - "Description": null - }, - "LOOKUP_FILE_METERSIZE_CHANGED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 60, - "Name": "LOOKUP_FILE_METERSIZE_CHANGED", - "Action": null, - "Description": null - }, - "LOOKUP_FILE_FAILURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 61, - "Name": "LOOKUP_FILE_FAILURE", - "Action": null, - "Description": null - }, - "LOOKUP_FILE_INVALID": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 62, - "Name": "LOOKUP_FILE_INVALID", - "Action": null, - "Description": null - }, - "LOOKUP_CRC_MISMATCH": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 63, - "Name": "LOOKUP_CRC_MISMATCH", - "Action": null, - "Description": null - }, - "LOOKUP_FILE_UNKNOWN_METERSIZE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 64, - "Name": "LOOKUP_FILE_UNKNOWN_METERSIZE", - "Action": null, - "Description": null - }, - "INSTALLATION_HIGH_TIME_DIFF": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 65, - "Name": "INSTALLATION_HIGH_TIME_DIFF", - "Action": null, - "Description": null - }, - "INSTALLATION_LOW_FLOW_IGNORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 66, - "Name": "INSTALLATION_LOW_FLOW_IGNORE", - "Action": null, - "Description": null - }, - "INSTALLATION_BAD_CHANNELS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 67, - "Name": "INSTALLATION_BAD_CHANNELS", - "Action": null, - "Description": null - }, - "INSTALLATION_FIXED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 68, - "Name": "INSTALLATION_FIXED", - "Action": null, - "Description": null - } - } - }, - "IRDA": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 20, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Name": "IRDA", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "PulseReportRate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "PulseReportRate", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate at which pulse reports are sent to the IrDA pulse adapter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate at which pulse reports are sent to the IrDA pulse adapter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate at which pulse reports are sent to the IrDA pulse adapter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate at which pulse reports are sent to the IrDA pulse adapter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "AdapterPresenceLimit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "AdapterPresenceLimit", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of 15 minute periods we have to have received no valid IrDA messages to assume there is no adapter present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 18, - "Last": 28 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of 15 minute periods we have to have received no valid IrDA messages to assume there is no adapter present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 29, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of 15 minute periods we have to have received no valid IrDA messages to assume there is no adapter present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of 15 minute periods we have to have received no valid IrDA messages to assume there is no adapter present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "Value": 3 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of 15 minute periods we have to have received no valid IrDA messages to assume there is no adapter present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "Value": 3 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Aw==" - }, - "IsValueInRange": true - }, - "PulseSequence": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "PulseSequence", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The present sequence number used in pulse reports", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The present sequence number used in pulse reports", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The present sequence number used in pulse reports", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 115, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The present sequence number used in pulse reports", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "qw==" - }, - "Value": 171 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The present sequence number used in pulse reports", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "qw==" - }, - "Value": 171 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "qw==" - }, - "IsValueInRange": true - }, - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "StoreConfiguration", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AMRDigits": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "AMRDigits", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of digits to use for AMR", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 40, - "Last": 52 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 9, - "Maximum": 9, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of digits to use for AMR", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 53, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 9, - "Maximum": 9, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of digits to use for AMR", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 8, - "Maximum": 9, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of digits to use for AMR", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 8, - "Maximum": 9, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "CA==" - }, - "Value": 8 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of digits to use for AMR", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 8, - "Maximum": 9, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "CA==" - }, - "Value": 8 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "CA==" - }, - "IsValueInRange": true - }, - "AMROffset": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "AMROffset", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The offset of the AMR smallest digit from the right (always negative)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 40, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -9, - "Default": 0, - "Maximum": 0, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The offset of the AMR smallest digit from the right (always negative)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -9, - "Default": 0, - "Maximum": 0, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The offset of the AMR smallest digit from the right (always negative)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -9, - "Default": 0, - "Maximum": 0, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The offset of the AMR smallest digit from the right (always negative)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -9, - "Default": 0, - "Maximum": 0, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "UI1203Fields": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "UI1203Fields", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A bitfield of the optional fields being used for UI-1203", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 40, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 268, - "Maximum": 268, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A bitfield of the optional fields being used for UI-1203", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 268, - "Maximum": 268, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A bitfield of the optional fields being used for UI-1203", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 268, - "Maximum": 268, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "DAE=" - }, - "Value": 268 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A bitfield of the optional fields being used for UI-1203", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 268, - "Maximum": 268, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "DAE=" - }, - "Value": 268 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "DAE=" - }, - "IsValueInRange": true - }, - "MfgDate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "MfgDate", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A timestamp of meter manufacture in seconds since 1/1/2000 00:00:00 UTC", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 43, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A timestamp of meter manufacture in seconds since 1/1/2000 00:00:00 UTC", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Wn7YLg==" - }, - "Value": 785940058 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A timestamp of meter manufacture in seconds since 1/1/2000 00:00:00 UTC", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "Wn7YLg==" - }, - "Value": 785940058 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Wn7YLg==" - }, - "IsValueInRange": true - }, - "DisplayAMRDigits": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "DisplayAMRDigits", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether or not to display AMR digits on the screen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 92, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether or not to display AMR digits on the screen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether or not to display AMR digits on the screen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether or not to display AMR digits on the screen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "AdapterID": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "AdapterID", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The serial number of the current pulse adapter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 193, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The serial number of the current pulse adapter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 193, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "\u0000\u0000\u0000\u0000" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AdapterFwVersion": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "AdapterFwVersion", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The firmware version of the current pulse adapter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 193, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The firmware version of the current pulse adapter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 193, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "ExtendedResolution": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "ExtendedResolution", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Boolean controlled by UI-1236 to control resolution of cubic feet unit in some meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 210, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Boolean controlled by UI-1236 to control resolution of cubic feet unit in some meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 210, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "BAD_CONFIG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "BAD_CONFIG", - "Action": null, - "Description": null - }, - "BAD_LENGTH": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "BAD_LENGTH", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "OUT_OF_RANGE", - "Action": null, - "Description": null - }, - "PENDING_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "PENDING_STORE", - "Action": null, - "Description": null - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "DID_NOT_STORE", - "Action": null, - "Description": null - }, - "TOO_MANY_BYTES": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "TOO_MANY_BYTES", - "Action": null, - "Description": null - } - } - }, - "NA2WALARMS": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 23, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 41, - "Last": 102 - }, - "Name": "NA2WALARMS", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "StoreConfiguration", - "AppName": "NA2WALARMS", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 41, - "Last": 102 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 41, - "Last": 102 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 41, - "Last": 102 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PredefEnable": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "PredefEnable", - "AppName": "NA2WALARMS", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 41, - "Last": 102 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bitmask of enabled predefined alarms", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 41, - "Last": 102 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 561047, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bitmask of enabled predefined alarms", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 41, - "Last": 102 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 561047, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "SENSOR_INVALID": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "SENSOR_INVALID", - "Action": null, - "Description": null - }, - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "ALARM_INVALID": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "ALARM_INVALID", - "Action": null, - "Description": null - }, - "UNIMPLEMENTED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "UNIMPLEMENTED", - "Action": null, - "Description": null - }, - "UNCONFIGURED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "UNCONFIGURED", - "Action": null, - "Description": null - }, - "CONFIG_INVALID": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "CONFIG_INVALID", - "Action": null, - "Description": null - }, - "NO_LATEST": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "NO_LATEST", - "Action": null, - "Description": null - }, - "FIXED_TYPE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "FIXED_TYPE", - "Action": null, - "Description": null - }, - "PREDEF_SET": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "PREDEF_SET", - "Action": null, - "Description": null - }, - "USERDEF_VOLUME_SET": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "USERDEF_VOLUME_SET", - "Action": null, - "Description": null - }, - "USERDEF_TEMPERATURE_SET": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "USERDEF_TEMPERATURE_SET", - "Action": null, - "Description": null - }, - "USERDEF_PRESSURE_SET": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "USERDEF_PRESSURE_SET", - "Action": null, - "Description": null - }, - "PREDEF_CLEAR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "PREDEF_CLEAR", - "Action": null, - "Description": null - }, - "USERDEF_VOLUME_CLEAR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "USERDEF_VOLUME_CLEAR", - "Action": null, - "Description": null - }, - "USERDEF_TEMPERATURE_CLEAR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "USERDEF_TEMPERATURE_CLEAR", - "Action": null, - "Description": null - }, - "USERDEF_PRESSURE_CLEAR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "USERDEF_PRESSURE_CLEAR", - "Action": null, - "Description": null - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "DID_NOT_STORE", - "Action": null, - "Description": null - }, - "STORE_PENDING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "STORE_PENDING", - "Action": null, - "Description": null - }, - "PREDEF_BACKUP_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "PREDEF_BACKUP_FAILED", - "Action": null, - "Description": null - }, - "PREDEF_RESTORE_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "PREDEF_RESTORE_FAILED", - "Action": null, - "Description": null - }, - "USERDEF_BACKUP_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 20, - "Name": "USERDEF_BACKUP_FAILED", - "Action": null, - "Description": null - }, - "USERDEF_RESTORE_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 21, - "Name": "USERDEF_RESTORE_FAILED", - "Action": null, - "Description": null - }, - "USERDEF_UNSUPPORTED_TYPE_FOR_SENSOR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 22, - "Name": "USERDEF_UNSUPPORTED_TYPE_FOR_SENSOR", - "Action": null, - "Description": null - } - } - }, - "NA2WLOGGER": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 22, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 199 - }, - "Name": "NA2WLOGGER", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "StoreConfiguration", - "AppName": "NA2WLOGGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 199 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Store all configuration items in non-volatile memory.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 147, - "Last": 199 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Store all configuration items in non-volatile memory.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 147, - "Last": 199 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "LimitLogSize": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "LimitLogSize", - "AppName": "NA2WLOGGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 199 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Override the maximum number of entries per log (0 keeps default)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 147, - "Last": 199 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Override the maximum number of entries per log (0 keeps default)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 147, - "Last": 199 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "NOT_MAIN_LOOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "NOT_MAIN_LOOP", - "Action": null, - "Description": null - }, - "LOG_INVALID": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "LOG_INVALID", - "Action": null, - "Description": null - }, - "LOG_OPEN_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "LOG_OPEN_FAILED", - "Action": null, - "Description": null - }, - "LOG_CLOSE_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "LOG_CLOSE_FAILED", - "Action": null, - "Description": null - }, - "LOG_REMOVE_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "LOG_REMOVE_FAILED", - "Action": null, - "Description": null - }, - "LOG_FLUSH_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "LOG_FLUSH_FAILED", - "Action": null, - "Description": null - }, - "LOG_CLEAR_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "LOG_CLEAR_FAILED", - "Action": null, - "Description": null - }, - "LOG_BAD_REQUEST": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "LOG_BAD_REQUEST", - "Action": null, - "Description": null - }, - "LOG_BAD_LIMIT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "LOG_BAD_LIMIT", - "Action": null, - "Description": null - }, - "LOG_BUSY": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "LOG_BUSY", - "Action": null, - "Description": null - }, - "QUERY_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "QUERY_FAILED", - "Action": null, - "Description": null - }, - "QUERY_UNKNOWN_SENSOR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "QUERY_UNKNOWN_SENSOR", - "Action": null, - "Description": null - }, - "QUERY_UNKNOWN_LOGFILE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "QUERY_UNKNOWN_LOGFILE", - "Action": null, - "Description": null - }, - "QUERY_BAD_ARGS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "QUERY_BAD_ARGS", - "Action": null, - "Description": null - }, - "QUERY_NOT_ENOUGH_SPACE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "QUERY_NOT_ENOUGH_SPACE", - "Action": null, - "Description": null - }, - "QUERY_NO_RECORDS_FOUND": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "QUERY_NO_RECORDS_FOUND", - "Action": null, - "Description": null - }, - "QUERY_FILE_READ_PROBLEM": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "QUERY_FILE_READ_PROBLEM", - "Action": null, - "Description": null - }, - "SETTINGS_STORE_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "SETTINGS_STORE_FAILED", - "Action": null, - "Description": null - }, - "SETTINGS_BAD_SENSORID": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 20, - "Name": "SETTINGS_BAD_SENSORID", - "Action": null, - "Description": null - }, - "SETTINGS_BAD_PERIOD": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 21, - "Name": "SETTINGS_BAD_PERIOD", - "Action": null, - "Description": null - }, - "SETTINGS_BAD_CHECKSUM": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 22, - "Name": "SETTINGS_BAD_CHECKSUM", - "Action": null, - "Description": null - }, - "SETTINGS_BAD_TIMESTAMP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 23, - "Name": "SETTINGS_BAD_TIMESTAMP", - "Action": null, - "Description": null - }, - "FILING_BAD": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 24, - "Name": "FILING_BAD", - "Action": null, - "Description": null - }, - "BAD_RECORD": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 25, - "Name": "BAD_RECORD", - "Action": null, - "Description": null - }, - "RANGE_SENSORID_BAD": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 26, - "Name": "RANGE_SENSORID_BAD", - "Action": null, - "Description": null - }, - "STORE_PENDING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 27, - "Name": "STORE_PENDING", - "Action": null, - "Description": null - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 28, - "Name": "DID_NOT_STORE", - "Action": null, - "Description": null - } - } - }, - "FLEXNETVERSION": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 24, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 9999 - }, - "Name": "FLEXNETVERSION", - "Registers": null, - "Status": null - }, - "FLEXNETSERIAL": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 26, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 20 - }, - "Name": "FLEXNETSERIAL", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "UpgState": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "UpgState", - "AppName": "FLEXNETSERIAL", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 20 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem Ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 20 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem Ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 20 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "FwdlState": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "FwdlState", - "AppName": "FLEXNETSERIAL", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 20 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem Ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 20 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem Ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 20 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "TOO_MANY_APPS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "TOO_MANY_APPS", - "Action": null, - "Description": null - } - } - } - }, - "TryGetCordonelAppsAndFWVersionValues": { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelAppVeriosnCrc[], LaaProduction.Data.Cordonel", - "$values": [ - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelAppVeriosnCrc, LaaProduction.Data.Cordonel", - "AppsPcbId": 212120036, - "AppsAppId": "00", - "AppsAppVersion": "0537", - "HistoryPcbId": 212120036, - "HistoryAppVersion": "0537", - "HistoryAppCrc": "39A8", - "FlexnetAppId": "24", - "FlexnetVersion": "4875", - "MetrologyVersion": 302, - "CoreRevisionMin": 162, - "CoreRevisionMax": 171, - "FilesAppId": "00", - "FilesAppVersion": "0537", - "FilesAppCrc": "39A8", - "ClusterFileId": 727, - "FileName": "binfile00_0537_20240403134558269206.bin" - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelAppVeriosnCrc, LaaProduction.Data.Cordonel", - "AppsPcbId": 212120036, - "AppsAppId": "01", - "AppsAppVersion": "0070", - "HistoryPcbId": 212120036, - "HistoryAppVersion": "0070", - "HistoryAppCrc": "B16C", - "FlexnetAppId": "24", - "FlexnetVersion": "4875", - "MetrologyVersion": 302, - "CoreRevisionMin": 162, - "CoreRevisionMax": 171, - "FilesAppId": "01", - "FilesAppVersion": "0070", - "FilesAppCrc": "B16C", - "ClusterFileId": 727, - "FileName": "binfile01_0070_20240403134558269206.bin" - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelAppVeriosnCrc, LaaProduction.Data.Cordonel", - "AppsPcbId": 212120036, - "AppsAppId": "04", - "AppsAppVersion": "0238", - "HistoryPcbId": 212120036, - "HistoryAppVersion": "0238", - "HistoryAppCrc": "8290", - "FlexnetAppId": "24", - "FlexnetVersion": "4875", - "MetrologyVersion": 302, - "CoreRevisionMin": 162, - "CoreRevisionMax": 171, - "FilesAppId": "04", - "FilesAppVersion": "0238", - "FilesAppCrc": "8290", - "ClusterFileId": 727, - "FileName": "binfile04_0238_20240403134558269206.bin" - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelAppVeriosnCrc, LaaProduction.Data.Cordonel", - "AppsPcbId": 212120036, - "AppsAppId": "08", - "AppsAppVersion": "0018", - "HistoryPcbId": 212120036, - "HistoryAppVersion": "0018", - "HistoryAppCrc": "12D4", - "FlexnetAppId": "24", - "FlexnetVersion": "4875", - "MetrologyVersion": 302, - "CoreRevisionMin": 162, - "CoreRevisionMax": 171, - "FilesAppId": "08", - "FilesAppVersion": "0018", - "FilesAppCrc": "12D4", - "ClusterFileId": 727, - "FileName": "binfile08_0018_20240403134558269206.bin" - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelAppVeriosnCrc, LaaProduction.Data.Cordonel", - "AppsPcbId": 212120036, - "AppsAppId": "09", - "AppsAppVersion": "0159", - "HistoryPcbId": 212120036, - "HistoryAppVersion": "0159", - "HistoryAppCrc": "D56D", - "FlexnetAppId": "24", - "FlexnetVersion": "4875", - "MetrologyVersion": 302, - "CoreRevisionMin": 162, - "CoreRevisionMax": 171, - "FilesAppId": "09", - "FilesAppVersion": "0159", - "FilesAppCrc": "D56D", - "ClusterFileId": 727, - "FileName": "binfile09_0159_20240403134558269206.bin" - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelAppVeriosnCrc, LaaProduction.Data.Cordonel", - "AppsPcbId": 212120036, - "AppsAppId": "0F", - "AppsAppVersion": "0302", - "HistoryPcbId": 212120036, - "HistoryAppVersion": "0302", - "HistoryAppCrc": "A3A6", - "FlexnetAppId": "24", - "FlexnetVersion": "4875", - "MetrologyVersion": 302, - "CoreRevisionMin": 162, - "CoreRevisionMax": 171, - "FilesAppId": "0F", - "FilesAppVersion": "0302", - "FilesAppCrc": "A3A6", - "ClusterFileId": 727, - "FileName": "binfile0F_0302_20240403134558269206.bin" - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelAppVeriosnCrc, LaaProduction.Data.Cordonel", - "AppsPcbId": 212120036, - "AppsAppId": "10", - "AppsAppVersion": "0530", - "HistoryPcbId": 212120036, - "HistoryAppVersion": "0530", - "HistoryAppCrc": "0704", - "FlexnetAppId": "24", - "FlexnetVersion": "4875", - "MetrologyVersion": 302, - "CoreRevisionMin": 162, - "CoreRevisionMax": 171, - "FilesAppId": "10", - "FilesAppVersion": "0530", - "FilesAppCrc": "0704", - "ClusterFileId": 727, - "FileName": "binfile10_0530_20240403134558269206.bin" - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelAppVeriosnCrc, LaaProduction.Data.Cordonel", - "AppsPcbId": 212120036, - "AppsAppId": "11", - "AppsAppVersion": "0075", - "HistoryPcbId": 212120036, - "HistoryAppVersion": "0075", - "HistoryAppCrc": "5796", - "FlexnetAppId": "24", - "FlexnetVersion": "4875", - "MetrologyVersion": 302, - "CoreRevisionMin": 162, - "CoreRevisionMax": 171, - "FilesAppId": "11", - "FilesAppVersion": "0075", - "FilesAppCrc": "5796", - "ClusterFileId": 727, - "FileName": "binfile11_0075_20240403134558269206.bin" - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelAppVeriosnCrc, LaaProduction.Data.Cordonel", - "AppsPcbId": 212120036, - "AppsAppId": "12", - "AppsAppVersion": "0113", - "HistoryPcbId": 212120036, - "HistoryAppVersion": "0113", - "HistoryAppCrc": "9BA6", - "FlexnetAppId": "24", - "FlexnetVersion": "4875", - "MetrologyVersion": 302, - "CoreRevisionMin": 162, - "CoreRevisionMax": 171, - "FilesAppId": "12", - "FilesAppVersion": "0113", - "FilesAppCrc": "9BA6", - "ClusterFileId": 727, - "FileName": "binfile12_0113_20240403134558269206.bin" - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelAppVeriosnCrc, LaaProduction.Data.Cordonel", - "AppsPcbId": 212120036, - "AppsAppId": "14", - "AppsAppVersion": "0206", - "HistoryPcbId": 212120036, - "HistoryAppVersion": "0206", - "HistoryAppCrc": "2EB1", - "FlexnetAppId": "24", - "FlexnetVersion": "4875", - "MetrologyVersion": 302, - "CoreRevisionMin": 162, - "CoreRevisionMax": 171, - "FilesAppId": "14", - "FilesAppVersion": "0206", - "FilesAppCrc": "2EB1", - "ClusterFileId": 727, - "FileName": "binfile14_0206_20240403134558269206.bin" - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelAppVeriosnCrc, LaaProduction.Data.Cordonel", - "AppsPcbId": 212120036, - "AppsAppId": "15", - "AppsAppVersion": "0059", - "HistoryPcbId": 212120036, - "HistoryAppVersion": "0059", - "HistoryAppCrc": "43F4", - "FlexnetAppId": "24", - "FlexnetVersion": "4875", - "MetrologyVersion": 302, - "CoreRevisionMin": 162, - "CoreRevisionMax": 171, - "FilesAppId": "15", - "FilesAppVersion": "0059", - "FilesAppCrc": "43F4", - "ClusterFileId": 727, - "FileName": "binfile15_0059_20240403134558269206.bin" - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelAppVeriosnCrc, LaaProduction.Data.Cordonel", - "AppsPcbId": 212120036, - "AppsAppId": "18", - "AppsAppVersion": "130B", - "HistoryPcbId": 212120036, - "HistoryAppVersion": "130B", - "HistoryAppCrc": "B2D5", - "FlexnetAppId": "24", - "FlexnetVersion": "4875", - "MetrologyVersion": 302, - "CoreRevisionMin": 162, - "CoreRevisionMax": 171, - "FilesAppId": "18", - "FilesAppVersion": "130B", - "FilesAppCrc": "B2D5", - "ClusterFileId": 727, - "FileName": "binfile18_130B_20240403134558269206.bin" - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelAppVeriosnCrc, LaaProduction.Data.Cordonel", - "AppsPcbId": 212120036, - "AppsAppId": "FF", - "AppsAppVersion": "0165", - "HistoryPcbId": 0, - "HistoryAppVersion": null, - "HistoryAppCrc": null, - "FlexnetAppId": null, - "FlexnetVersion": null, - "MetrologyVersion": 0, - "CoreRevisionMin": 0, - "CoreRevisionMax": 0, - "FilesAppId": null, - "FilesAppVersion": null, - "FilesAppCrc": null, - "ClusterFileId": 0, - "FileName": null - } - ] - }, - "TryGetCordonelMetrologyValues": { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelMetrologyValues, LaaProduction.Data.Cordonel", - "Id": 2275, - "PcbId": 212120036, - "CalFactor1": 15625, - "CalFactor2": 15625, - "CalFactor3": 15625, - "ZeroOffset1": -26, - "ZeroOffset2": -39, - "ZeroOffset3": -15, - "FirstHitUpdatePeriod": 10, - "FirstHitShift": 4, - "FirstHitPercent1": 17, - "FirstHitPercent2": 17, - "FirstHitPercent3": 17, - "ToFTempOffset1": 4432, - "ToFTempOffset2": -8023, - "ToFTempOffset3": -167441, - "MeterSize": 3, - "Date": "2022-04-25T15:50:29.713", - "Successful": true - }, - "TryGetCordonelRadioDefaults": { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRSSIValues, LaaProduction.Data.Cordonel", - "RadioAddress": 402001154, - "Frequency": 868, - "Nennweite": 80, - "Baulaenge": 225, - "PulseModule": true, - "DruckSensor": false, - "LimitId": 145, - "RSSI_PAM_Min": 140, - "RSSI_PAM_Max": 161, - "RSSI_SEMI_Min": 158, - "RSSI_SEMI_Max": 187, - "RadioCheckId": 11162, - "RadioLimitId": 145, - "RSSI_PAM": 153, - "RSSI_SEMI": 174, - "Datum": "2024-11-26T13:38:27.84" - }, - "TryGetPasswordFileContent": { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelPasswordFile, LaaProduction.Data.Cordonel", - "OrderNumber": 3184020, - "RadioAddress": 10402001154, - "PasswordFileIdent": "10402001154", - "KeySetId": "76256b9a-f0e0-4ede-ba5f-ac73d5f49a5a", - "Skeleton": "3B39429FD4CB", - "Password": "F633A8105393", - "ListOfHashes": { - "$type": "System.Byte[][], mscorlib", - "$values": [ - { - "$type": "System.Byte[], mscorlib", - "$value": "3Q+q/QFnEN9R5OeVoGqrwXtzDPg=" - }, - { - "$type": "System.Byte[], mscorlib", - "$value": "u2px15IYqF/P3xTuu7pa1jOPVSA=" - }, - { - "$type": "System.Byte[], mscorlib", - "$value": "9GEughr3Nvr4p2XOEbIUqsk8hEs=" - }, - { - "$type": "System.Byte[], mscorlib", - "$value": "5tOXxXOi6Xmb+XGnl0YNN1E/0JM=" - }, - { - "$type": "System.Byte[], mscorlib", - "$value": "nsnNLbVKMIzLnmf1ql3KwECNtSM=" - }, - { - "$type": "System.Byte[], mscorlib", - "$value": "uMxlHVWOcukcl/EIpNMp7ULsJz8=" - }, - { - "$type": "System.Byte[], mscorlib", - "$value": "ZKWZPbHX9KAs+VDoP88PGCYBbDQ=" - }, - { - "$type": "System.Byte[], mscorlib", - "$value": "k3NeEXm3Wlc3qLzeMzvN+GRJO78=" - } - ] - }, - "ListOfPasswords": { - "$type": "System.Byte[][], mscorlib", - "$values": [ - { - "$type": "System.Byte[], mscorlib", - "$value": "QUMzQUEzMkQyOTQx" - }, - { - "$type": "System.Byte[], mscorlib", - "$value": "NDIyMDZBOTdGQ0E4" - }, - { - "$type": "System.Byte[], mscorlib", - "$value": "M0IzOTQyOUZENENC" - }, - { - "$type": "System.Byte[], mscorlib", - "$value": "OUM0ODY4MUVEMDc3" - }, - { - "$type": "System.Byte[], mscorlib", - "$value": "NTZBMjNFMkI1MDAw" - }, - { - "$type": "System.Byte[], mscorlib", - "$value": "MzIwMzU0QzlDMzk3" - }, - { - "$type": "System.Byte[], mscorlib", - "$value": "Q0JEREQ0OTI5NUJB" - }, - { - "$type": "System.Byte[], mscorlib", - "$value": "RjYzM0E4MTA1Mzkz" - } - ] - }, - "APIHashes": "DD-0F-AA-FD-01-67-10-DF-51-E4-E7-95-A0-6A-AB-C1-7B-73-0C-F8-BB-6A-71-D7-92-18-A8-5F-CF-DF-14-EE-BB-BA-5A-D6-33-8F-55-20-F4-61-2E-82-1A-F7-36-FA-F8-A7-65-CE-11-B2-14-AA-C9-3C-84-4B-E6-D3-97-C5-73-A2-E9-79-9B-F9-71-A7-97-46-0D-37-51-3F-D0-93-9E-C9-CD-2D-B5-4A-30-8C-CB-9E-67-F5-AA-5D-CA-C0-40-8D-B5-23-B8-CC-65-1D-55-8E-72-E9-1C-97-F1-08-A4-D3-29-ED-42-EC-27-3F-64-A5-99-3D-B1-D7-F4-A0-2C-F9-50-E8-3F-CF-0F-18-26-01-6C-34-93-73-5E-11-79-B7-5A-57-37-A8-BC-DE-33-3B-CD-F8-64-49-3B-BF", - "DbHashes": "DD-0F-AA-FD-01-67-10-DF-51-E4-E7-95-A0-6A-AB-C1-7B-73-0C-F8-BB-6A-71-D7-92-18-A8-5F-CF-DF-14-EE-BB-BA-5A-D6-33-8F-55-20-F4-61-2E-82-1A-F7-36-FA-F8-A7-65-CE-11-B2-14-AA-C9-3C-84-4B-E6-D3-97-C5-73-A2-E9-79-9B-F9-71-A7-97-46-0D-37-51-3F-D0-93-9E-C9-CD-2D-B5-4A-30-8C-CB-9E-67-F5-AA-5D-CA-C0-40-8D-B5-23-B8-CC-65-1D-55-8E-72-E9-1C-97-F1-08-A4-D3-29-ED-42-EC-27-3F-64-A5-99-3D-B1-D7-F4-A0-2C-F9-50-E8-3F-CF-0F-18-26-01-6C-34-93-73-5E-11-79-B7-5A-57-37-A8-BC-DE-33-3B-CD-F8-64-49-3B-BF", - "DbSkeleton": "3B39429FD4CB", - "DbPassword": "F633A8105393" - }, - "GetLatestRegistersWithValues": { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory[], LaaProduction.Data.Cordonel", - "$values": [ - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454211, - "AppId": 0, - "RegisterId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25846920, - "AppId": 0, - "RegisterId": 1, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847270, - "AppId": 0, - "RegisterId": 2, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "MjEyMTIwMDM2AAAA" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454037, - "AppId": 0, - "RegisterId": 3, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454029, - "AppId": 0, - "RegisterId": 4, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454034, - "AppId": 0, - "RegisterId": 5, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454129, - "AppId": 0, - "RegisterId": 6, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847269, - "AppId": 0, - "RegisterId": 7, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "HwAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847265, - "AppId": 0, - "RegisterId": 8, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Y37YLg==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847267, - "AppId": 0, - "RegisterId": 9, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Q29yZG9uZWwgMS42NQBO5A==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454033, - "AppId": 0, - "RegisterId": 10, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25846996, - "AppId": 0, - "RegisterId": 11, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847266, - "AppId": 0, - "RegisterId": 12, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25846917, - "AppId": 0, - "RegisterId": 13, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "1bIAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847271, - "AppId": 0, - "RegisterId": 14, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/gAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847268, - "AppId": 0, - "RegisterId": 15, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847186, - "AppId": 1, - "RegisterId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Ww4AAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847180, - "AppId": 1, - "RegisterId": 1, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "VGFkaXJhbgA=" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847185, - "AppId": 1, - "RegisterId": 2, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BgAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847182, - "AppId": 1, - "RegisterId": 4, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AgAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847183, - "AppId": 1, - "RegisterId": 5, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "JAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847187, - "AppId": 1, - "RegisterId": 7, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "HAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847184, - "AppId": 1, - "RegisterId": 8, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847190, - "AppId": 1, - "RegisterId": 9, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "iRDElgMAAAA=" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847191, - "AppId": 1, - "RegisterId": 10, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "IR1UBg==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847192, - "AppId": 1, - "RegisterId": 11, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAaYJQ==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847181, - "AppId": 1, - "RegisterId": 12, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "OEoAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847189, - "AppId": 1, - "RegisterId": 13, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847188, - "AppId": 1, - "RegisterId": 14, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "YAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847046, - "AppId": 4, - "RegisterId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "CAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454114, - "AppId": 4, - "RegisterId": 1, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847033, - "AppId": 4, - "RegisterId": 2, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "MEYAIA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847036, - "AppId": 4, - "RegisterId": 3, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25846986, - "AppId": 4, - "RegisterId": 4, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "pNMp7ULsJz9kpZk9sdf0oCz5UOg/zw8YJgFsNJNzXhF5t1pXN6i83jM7zfhkSTu/" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847034, - "AppId": 4, - "RegisterId": 5, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25846982, - "AppId": 4, - "RegisterId": 6, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847035, - "AppId": 4, - "RegisterId": 7, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454133, - "AppId": 4, - "RegisterId": 8, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454155, - "AppId": 4, - "RegisterId": 9, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454063, - "AppId": 4, - "RegisterId": 10, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847045, - "AppId": 4, - "RegisterId": 12, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "MjEyMTIwMDM2AAAA" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847044, - "AppId": 4, - "RegisterId": 13, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "gAEAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454147, - "AppId": 4, - "RegisterId": 14, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847152, - "AppId": 8, - "RegisterId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "ABAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847151, - "AppId": 8, - "RegisterId": 1, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454026, - "AppId": 8, - "RegisterId": 2, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847153, - "AppId": 8, - "RegisterId": 3, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847049, - "AppId": 9, - "RegisterId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847050, - "AppId": 9, - "RegisterId": 1, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AgAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847080, - "AppId": 9, - "RegisterId": 2, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "EQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847051, - "AppId": 9, - "RegisterId": 3, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847052, - "AppId": 9, - "RegisterId": 4, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847053, - "AppId": 9, - "RegisterId": 5, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847054, - "AppId": 9, - "RegisterId": 6, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847055, - "AppId": 9, - "RegisterId": 7, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847056, - "AppId": 9, - "RegisterId": 8, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847048, - "AppId": 9, - "RegisterId": 9, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "U4AAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847047, - "AppId": 9, - "RegisterId": 10, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "3B8AAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847057, - "AppId": 9, - "RegisterId": 11, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/n8AAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454264, - "AppId": 9, - "RegisterId": 12, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847060, - "AppId": 9, - "RegisterId": 13, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/stVAQ==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847063, - "AppId": 9, - "RegisterId": 14, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "wE4AAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847073, - "AppId": 9, - "RegisterId": 15, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "CAcAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847064, - "AppId": 9, - "RegisterId": 18, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "0AAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847058, - "AppId": 9, - "RegisterId": 19, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847072, - "AppId": 9, - "RegisterId": 20, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847059, - "AppId": 9, - "RegisterId": 21, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847062, - "AppId": 9, - "RegisterId": 22, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/moDAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847067, - "AppId": 9, - "RegisterId": 23, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AI7QCg==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847077, - "AppId": 9, - "RegisterId": 24, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "9AEAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847076, - "AppId": 9, - "RegisterId": 25, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847079, - "AppId": 9, - "RegisterId": 26, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847078, - "AppId": 9, - "RegisterId": 27, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847069, - "AppId": 9, - "RegisterId": 28, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AGoYAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847068, - "AppId": 9, - "RegisterId": 29, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847071, - "AppId": 9, - "RegisterId": 30, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "MHUAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847070, - "AppId": 9, - "RegisterId": 31, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847075, - "AppId": 9, - "RegisterId": 32, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847074, - "AppId": 9, - "RegisterId": 33, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454198, - "AppId": 9, - "RegisterId": 34, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847061, - "AppId": 9, - "RegisterId": 35, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847065, - "AppId": 9, - "RegisterId": 36, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847066, - "AppId": 9, - "RegisterId": 37, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454052, - "AppId": 9, - "RegisterId": 38, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847121, - "AppId": 15, - "RegisterId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AgAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847095, - "AppId": 15, - "RegisterId": 1, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847096, - "AppId": 15, - "RegisterId": 2, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847097, - "AppId": 15, - "RegisterId": 3, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847092, - "AppId": 15, - "RegisterId": 4, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847093, - "AppId": 15, - "RegisterId": 5, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847094, - "AppId": 15, - "RegisterId": 6, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847124, - "AppId": 15, - "RegisterId": 7, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BgAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847081, - "AppId": 15, - "RegisterId": 8, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "EwAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847119, - "AppId": 15, - "RegisterId": 9, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "EQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847087, - "AppId": 15, - "RegisterId": 10, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/QAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847088, - "AppId": 15, - "RegisterId": 11, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847116, - "AppId": 15, - "RegisterId": 12, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AwAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847083, - "AppId": 15, - "RegisterId": 13, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Ij0AAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847084, - "AppId": 15, - "RegisterId": 14, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Ij0AAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847085, - "AppId": 15, - "RegisterId": 15, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Ij0AAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847137, - "AppId": 15, - "RegisterId": 16, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "5v///w==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847138, - "AppId": 15, - "RegisterId": 17, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "2f///w==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847139, - "AppId": 15, - "RegisterId": 18, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "8f///w==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847122, - "AppId": 15, - "RegisterId": 19, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454088, - "AppId": 15, - "RegisterId": 20, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847104, - "AppId": 15, - "RegisterId": 21, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847106, - "AppId": 15, - "RegisterId": 22, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847125, - "AppId": 15, - "RegisterId": 23, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847134, - "AppId": 15, - "RegisterId": 24, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847135, - "AppId": 15, - "RegisterId": 25, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847109, - "AppId": 15, - "RegisterId": 26, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "JgIAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847108, - "AppId": 15, - "RegisterId": 27, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA8AA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847136, - "AppId": 15, - "RegisterId": 28, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847082, - "AppId": 15, - "RegisterId": 29, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "gIQeAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847089, - "AppId": 15, - "RegisterId": 30, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847090, - "AppId": 15, - "RegisterId": 31, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847091, - "AppId": 15, - "RegisterId": 32, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454183, - "AppId": 15, - "RegisterId": 33, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847132, - "AppId": 15, - "RegisterId": 34, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847114, - "AppId": 15, - "RegisterId": 35, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "u4wHAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847115, - "AppId": 15, - "RegisterId": 36, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "0vpbAg==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847118, - "AppId": 15, - "RegisterId": 37, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "WItPAQ==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847099, - "AppId": 15, - "RegisterId": 38, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "EQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847100, - "AppId": 15, - "RegisterId": 39, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "EQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847101, - "AppId": 15, - "RegisterId": 40, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "EQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847102, - "AppId": 15, - "RegisterId": 41, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847098, - "AppId": 15, - "RegisterId": 42, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847128, - "AppId": 15, - "RegisterId": 43, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "EAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847103, - "AppId": 15, - "RegisterId": 44, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "CgAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847120, - "AppId": 15, - "RegisterId": 45, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "HgAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847129, - "AppId": 15, - "RegisterId": 46, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "UBEAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847130, - "AppId": 15, - "RegisterId": 47, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "qeD//w==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847131, - "AppId": 15, - "RegisterId": 48, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "73H9/w==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454080, - "AppId": 15, - "RegisterId": 49, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847126, - "AppId": 15, - "RegisterId": 50, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847123, - "AppId": 15, - "RegisterId": 51, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847133, - "AppId": 15, - "RegisterId": 52, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847113, - "AppId": 15, - "RegisterId": 53, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAArw==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847117, - "AppId": 15, - "RegisterId": 54, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AACAJQ==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847105, - "AppId": 15, - "RegisterId": 55, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847127, - "AppId": 15, - "RegisterId": 56, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847110, - "AppId": 15, - "RegisterId": 57, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "f60BAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847112, - "AppId": 15, - "RegisterId": 58, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "ACAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847111, - "AppId": 15, - "RegisterId": 59, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "3hgCAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847107, - "AppId": 15, - "RegisterId": 60, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "jUYAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847086, - "AppId": 15, - "RegisterId": 61, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847259, - "AppId": 16, - "RegisterId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "DwAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847223, - "AppId": 16, - "RegisterId": 1, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "EA4AAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847214, - "AppId": 16, - "RegisterId": 2, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AwAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847264, - "AppId": 16, - "RegisterId": 3, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AwAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847220, - "AppId": 16, - "RegisterId": 4, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BwAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847272, - "AppId": 16, - "RegisterId": 5, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "ZAMAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847209, - "AppId": 16, - "RegisterId": 6, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "ZAMAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847229, - "AppId": 16, - "RegisterId": 7, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847277, - "AppId": 16, - "RegisterId": 9, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AgAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847273, - "AppId": 16, - "RegisterId": 10, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Ag32Fw==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847262, - "AppId": 16, - "RegisterId": 11, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847246, - "AppId": 16, - "RegisterId": 12, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847244, - "AppId": 16, - "RegisterId": 13, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847245, - "AppId": 16, - "RegisterId": 14, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847196, - "AppId": 16, - "RegisterId": 15, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847215, - "AppId": 16, - "RegisterId": 16, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "agMAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847216, - "AppId": 16, - "RegisterId": 17, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "wE4AAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847197, - "AppId": 16, - "RegisterId": 18, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "y1UBAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847198, - "AppId": 16, - "RegisterId": 19, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847235, - "AppId": 16, - "RegisterId": 20, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "oAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847237, - "AppId": 16, - "RegisterId": 21, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AwAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847233, - "AppId": 16, - "RegisterId": 22, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847234, - "AppId": 16, - "RegisterId": 23, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847236, - "AppId": 16, - "RegisterId": 24, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "PAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847238, - "AppId": 16, - "RegisterId": 25, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847232, - "AppId": 16, - "RegisterId": 26, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "9QMAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847249, - "AppId": 16, - "RegisterId": 27, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "MgAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847251, - "AppId": 16, - "RegisterId": 28, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AgAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847252, - "AppId": 16, - "RegisterId": 29, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847253, - "AppId": 16, - "RegisterId": 30, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LAEAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847250, - "AppId": 16, - "RegisterId": 31, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "PAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847254, - "AppId": 16, - "RegisterId": 32, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847241, - "AppId": 16, - "RegisterId": 33, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "CAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847239, - "AppId": 16, - "RegisterId": 34, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "ZAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847240, - "AppId": 16, - "RegisterId": 35, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454044, - "AppId": 16, - "RegisterId": 36, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454265, - "AppId": 16, - "RegisterId": 37, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847275, - "AppId": 16, - "RegisterId": 38, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847276, - "AppId": 16, - "RegisterId": 39, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847210, - "AppId": 16, - "RegisterId": 40, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "HQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847255, - "AppId": 16, - "RegisterId": 43, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847274, - "AppId": 16, - "RegisterId": 44, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Dp+sxqDh7xw7J6SbrCFlNQ==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847194, - "AppId": 16, - "RegisterId": 45, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FDBo0A==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847261, - "AppId": 16, - "RegisterId": 46, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "CxMAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454096, - "AppId": 16, - "RegisterId": 47, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847243, - "AppId": 16, - "RegisterId": 48, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "rTZsLg==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847218, - "AppId": 16, - "RegisterId": 49, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847263, - "AppId": 16, - "RegisterId": 50, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847260, - "AppId": 16, - "RegisterId": 51, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "EwAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847205, - "AppId": 16, - "RegisterId": 52, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847224, - "AppId": 16, - "RegisterId": 53, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847256, - "AppId": 16, - "RegisterId": 54, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "TxwAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847201, - "AppId": 16, - "RegisterId": 55, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847199, - "AppId": 16, - "RegisterId": 56, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847200, - "AppId": 16, - "RegisterId": 57, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "PAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847195, - "AppId": 16, - "RegisterId": 58, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847207, - "AppId": 16, - "RegisterId": 59, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847206, - "AppId": 16, - "RegisterId": 60, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847221, - "AppId": 16, - "RegisterId": 61, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BgAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847230, - "AppId": 16, - "RegisterId": 62, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LwAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847211, - "AppId": 16, - "RegisterId": 63, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LQsAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847212, - "AppId": 16, - "RegisterId": 64, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "LwsAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847213, - "AppId": 16, - "RegisterId": 65, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847247, - "AppId": 16, - "RegisterId": 66, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847217, - "AppId": 16, - "RegisterId": 67, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "FQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847202, - "AppId": 16, - "RegisterId": 68, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "gJcGAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847193, - "AppId": 16, - "RegisterId": 69, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "6AMAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847225, - "AppId": 16, - "RegisterId": 70, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/wD/AA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847226, - "AppId": 16, - "RegisterId": 71, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/wD/AA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847227, - "AppId": 16, - "RegisterId": 72, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/wD/AA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847228, - "AppId": 16, - "RegisterId": 73, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "/wD/AA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847231, - "AppId": 16, - "RegisterId": 74, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847257, - "AppId": 16, - "RegisterId": 75, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BUQVIA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847258, - "AppId": 16, - "RegisterId": 76, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BUQVQA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847222, - "AppId": 16, - "RegisterId": 77, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847174, - "AppId": 17, - "RegisterId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847175, - "AppId": 17, - "RegisterId": 1, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "PAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847173, - "AppId": 17, - "RegisterId": 2, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847177, - "AppId": 17, - "RegisterId": 3, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AyQADA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847176, - "AppId": 17, - "RegisterId": 4, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847178, - "AppId": 17, - "RegisterId": 5, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847179, - "AppId": 17, - "RegisterId": 6, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "4QAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847156, - "AppId": 18, - "RegisterId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "gIQeAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847170, - "AppId": 18, - "RegisterId": 1, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847169, - "AppId": 18, - "RegisterId": 2, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "ANQwAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847167, - "AppId": 18, - "RegisterId": 3, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847166, - "AppId": 18, - "RegisterId": 4, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "CAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847155, - "AppId": 18, - "RegisterId": 5, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847154, - "AppId": 18, - "RegisterId": 6, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AwAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847157, - "AppId": 18, - "RegisterId": 7, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847171, - "AppId": 18, - "RegisterId": 8, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847164, - "AppId": 18, - "RegisterId": 9, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847163, - "AppId": 18, - "RegisterId": 10, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "YOoAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847161, - "AppId": 18, - "RegisterId": 11, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847162, - "AppId": 18, - "RegisterId": 12, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847160, - "AppId": 18, - "RegisterId": 13, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847158, - "AppId": 18, - "RegisterId": 14, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454238, - "AppId": 18, - "RegisterId": 15, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454036, - "AppId": 18, - "RegisterId": 16, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847165, - "AppId": 18, - "RegisterId": 17, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AQAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847168, - "AppId": 18, - "RegisterId": 18, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "BwAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847159, - "AppId": 18, - "RegisterId": 19, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847147, - "AppId": 20, - "RegisterId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847142, - "AppId": 20, - "RegisterId": 1, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AwAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847148, - "AppId": 20, - "RegisterId": 2, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "qwAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847149, - "AppId": 20, - "RegisterId": 3, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847143, - "AppId": 20, - "RegisterId": 4, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "CAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847144, - "AppId": 20, - "RegisterId": 5, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847150, - "AppId": 20, - "RegisterId": 6, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "DAEAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847146, - "AppId": 20, - "RegisterId": 7, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "Wn7YLg==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847145, - "AppId": 20, - "RegisterId": 8, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847141, - "AppId": 20, - "RegisterId": 9, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847140, - "AppId": 20, - "RegisterId": 10, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 25847172, - "AppId": 21, - "RegisterId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - } - }, - { - "$type": "LaaProduction.Data.Cordonel.Models.CordonelRegisterHistory, LaaProduction.Data.Cordonel", - "Id": 21454127, - "AppId": 21, - "RegisterId": 1, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - } - } - ] - }, - "CordonelAppsDictionary": { - "$type": "LaaPackages.Features.Cordonel.CordonelAppsDictionary, LaaPackages.Features.Cordonel", - "CUSTOMER": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 9, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Name": "CUSTOMER", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "AlarmStatus0": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "AlarmStatus0", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 0-3.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 0-3.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AlarmStatus1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "AlarmStatus1", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 4-7.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 4-7.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "TriggerAlarmCancel": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "TriggerAlarmCancel", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Any set bits manually clear the corresponding alarm.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Any set bits manually clear the corresponding alarm.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Any set bits manually clear the corresponding alarm.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AlarmStatus2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "AlarmStatus2", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 8-11.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 8-11.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AlarmStatus3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "AlarmStatus3", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 12-15.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 12-15.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AlarmStatus4": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "AlarmStatus4", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 16-19.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 16-19.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AlarmStatus5": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "AlarmStatus5", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 20-23.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 20-23.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AlarmStatus6": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "AlarmStatus6", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 24-27.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 24-27.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AlarmStatus7": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "AlarmStatus7", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 28-31.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "8 bit counts corresponding to alarms 28-31.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AlarmEnableMask": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "AlarmEnableMask", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which are being monitored.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which are being monitored.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which are being monitored.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AlarmBroadcastMask": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "AlarmBroadcastMask", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which will generate events.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which will generate events.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which will generate events.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AlarmVisualMask": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "AlarmVisualMask", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which are displayed with IDs and the alarm icon.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 110, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which are displayed with IDs and the alarm icon.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit set of those alarms which are displayed with IDs and the alarm icon.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4294967295, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AlarmVisualAutoClearMask": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "AlarmVisualAutoClearMask", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Alarms that have their display automatically cleared", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 110, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Alarms that have their display automatically cleared", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Alarms that have their display automatically cleared", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ExcessFlowVolumeThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "ExcessFlowVolumeThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which broken pipe alarm is set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 61, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 639590, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which broken pipe alarm is set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 118 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 639590, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which broken pipe alarm is set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 132 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 639590, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which broken pipe alarm is set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 133, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 639999, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which broken pipe alarm is set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 133, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 639999, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "LeakTimeThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "LeakTimeThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for leak alarm in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 61, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 10080, - "Maximum": 69632, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for leak alarm in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 118 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 10080, - "Maximum": 69632, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for leak alarm in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 360, - "Maximum": 69632, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for leak alarm in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 360, - "Maximum": 69632, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ReverseFlowTimeThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "ReverseFlowTimeThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of measurements in reverse flow required to set reverse flow alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 61, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of measurements in reverse flow required to set reverse flow alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 142 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of measurements in reverse flow required to set reverse flow alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 143, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of measurements in reverse flow required to set reverse flow alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 143, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "Locale": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "Locale", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Timezone in which this application is set to run.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 24, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Timezone in which this application is set to run.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 24, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "AppArrangement": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "AppArrangement", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "A name for the arrangement of applications on the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 130, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "A name for the arrangement of applications on the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 130, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "RebootCount": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 20, - "Name": "RebootCount", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of times the meter has rebooted", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 73, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of times the meter has rebooted", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of times the meter has rebooted", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ExcessFlowTimeThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 21, - "Name": "ExcessFlowTimeThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for broken pipe alarm in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 80, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15, - "Maximum": 69632, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for broken pipe alarm in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 118 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15, - "Maximum": 69632, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for broken pipe alarm in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 180, - "Maximum": 69632, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for broken pipe alarm in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 180, - "Maximum": 69632, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "LeakFlowThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 22, - "Name": "LeakFlowThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which leak alarm can be set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 80, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 12800, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which leak alarm can be set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 118 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 12800, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which leak alarm can be set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 132 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 5529, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which leak alarm can be set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 133, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6399, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "approximate", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Flow rate above which leak alarm can be set in 1/256 l/h. Due to rounding the value read back may not be exactly the value written. This is why the statictype is given as 'approximate'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 133, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6399, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "MfgCharge": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 23, - "Name": "MfgCharge", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Charge in uAs available in manufacturing (read only)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 84, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": 181440000, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Charge in uAs available in manufacturing (read only)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 84, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": 181440000, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "TemperatureHighThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 24, - "Name": "TemperatureHighThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "High temperature alarm threshold in 0.1°C", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 100 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 500, - "Maximum": 800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "High temperature alarm threshold in 0.1°C", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 101, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 500, - "Maximum": 800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "High temperature alarm threshold in 0.1°C", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 500, - "Maximum": 800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "High temperature alarm threshold in 0.1°C", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 500, - "Maximum": 800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "TemperatureHighDelay": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 25, - "Name": "TemperatureHighDelay", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for high temperature alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for high temperature alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for high temperature alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "TemperatureLowThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 26, - "Name": "TemperatureLowThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Low temperature alarm threshold in 0.1°C", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 100 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Low temperature alarm threshold in 0.1°C", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 101, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Low temperature alarm threshold in 0.1°C", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Low temperature alarm threshold in 0.1°C", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "TemperatureLowDelay": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 27, - "Name": "TemperatureLowDelay", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for low temperature alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for low temperature alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for low temperature alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PressureHighThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 28, - "Name": "PressureHighThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "High pressure alarm threshold in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1600000, - "Maximum": 2550000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "High pressure alarm threshold in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 121 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1600000, - "Maximum": 2550000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "High pressure alarm threshold in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 122, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1600000, - "Maximum": 2550000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "High pressure alarm threshold in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 122, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1600000, - "Maximum": 2550000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PressureHighDelay": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 29, - "Name": "PressureHighDelay", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for high pressure alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 300, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for high pressure alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 118 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 300, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for high pressure alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for high pressure alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PressureLowThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 30, - "Name": "PressureLowThreshold", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Low pressure alarm threshold in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30000, - "Maximum": 2550000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Low pressure alarm threshold in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 121 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30000, - "Maximum": 2550000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Low pressure alarm threshold in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 122, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30000, - "Maximum": 2550000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Low pressure alarm threshold in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 122, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30000, - "Maximum": 2550000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PressureLowDelay": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 31, - "Name": "PressureLowDelay", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for low pressure alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 110 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 300, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for low pressure alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 111, - "Last": 118 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 300, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for low pressure alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time threshold for low pressure alarm in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 10800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 32, - "Name": "StoreConfiguration", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Store all configuration items in non-volatile memory.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 88, - "Last": 130 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Store all configuration items in non-volatile memory.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 131, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Store all configuration items in non-volatile memory.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 131, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "SerialNumber": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 33, - "Name": "SerialNumber", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Customer serial number string", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 139, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Customer serial number string", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 139, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "BackupCalendarSeconds": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 34, - "Name": "BackupCalendarSeconds", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "TIME", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 0, - "Lvl8": 0 - }, - "Description": "Internal backup of calendar seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 145, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.TIME, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "00:00:00" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "TIME", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 0, - "Lvl8": 0 - }, - "Description": "Internal backup of calendar seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 145, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.TIME, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "00:00:00" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "InstallationTime": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 35, - "Name": "InstallationTime", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "TIME", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time meter was determined to have been installed. 0 means not installed", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 147, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.TIME, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "00:00:00" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "TIME", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time meter was determined to have been installed. 0 means not installed", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 147, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.TIME, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "00:00:00" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "LocaleDecimalPoint": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 36, - "Name": "LocaleDecimalPoint", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Read to view the string used as a decimal point for this locale", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 151, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Read to view the string used as a decimal point for this locale", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 151, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "LocaleThousandsSeparator": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 37, - "Name": "LocaleThousandsSeparator", - "AppName": "CUSTOMER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 156 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Read to view the string used as a thousands separarator for this locale", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 151, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Read to view the string used as a thousands separarator for this locale", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 151, - "Last": 157 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "REBOOT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "REBOOT", - "Action": null, - "Description": null - }, - "REBOOT_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "REBOOT_STOP", - "Action": null, - "Description": null - }, - "LOW_BATTERY": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "LOW_BATTERY", - "Action": null, - "Description": null - }, - "LOW_BATTERY_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "LOW_BATTERY_STOP", - "Action": null, - "Description": null - }, - "VERY_LOW_BATTERY": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "VERY_LOW_BATTERY", - "Action": null, - "Description": null - }, - "VERY_LOW_BATTERY_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "VERY_LOW_BATTERY_STOP", - "Action": null, - "Description": null - }, - "CONFIG_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "CONFIG_ERROR", - "Action": null, - "Description": null - }, - "CONFIG_ERROR_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "CONFIG_ERROR_STOP", - "Action": null, - "Description": null - }, - "EMPTY_PIPE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "EMPTY_PIPE", - "Action": null, - "Description": null - }, - "EMPTY_PIPE_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "EMPTY_PIPE_STOP", - "Action": null, - "Description": null - }, - "MAGNETIC_TAMPER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "MAGNETIC_TAMPER", - "Action": null, - "Description": null - }, - "MAGNETIC_TAMPER_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "MAGNETIC_TAMPER_STOP", - "Action": null, - "Description": null - }, - "REVERSE_FLOW": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "REVERSE_FLOW", - "Action": null, - "Description": null - }, - "REVERSE_FLOW_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "REVERSE_FLOW_STOP", - "Action": null, - "Description": null - }, - "SUSPECT_LEAK": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "SUSPECT_LEAK", - "Action": null, - "Description": null - }, - "SUSPECT_LEAK_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "SUSPECT_LEAK_STOP", - "Action": null, - "Description": null - }, - "BROKEN_PIPE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "BROKEN_PIPE", - "Action": null, - "Description": null - }, - "BROKEN_PIPE_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "BROKEN_PIPE_STOP", - "Action": null, - "Description": null - }, - "LOW_PRESSURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "LOW_PRESSURE", - "Action": null, - "Description": null - }, - "LOW_PRESSURE_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "LOW_PRESSURE_STOP", - "Action": null, - "Description": null - }, - "HIGH_PRESSURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 20, - "Name": "HIGH_PRESSURE", - "Action": null, - "Description": null - }, - "HIGH_PRESSURE_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 21, - "Name": "HIGH_PRESSURE_STOP", - "Action": null, - "Description": null - }, - "LOW_TEMPERATURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 22, - "Name": "LOW_TEMPERATURE", - "Action": null, - "Description": null - }, - "LOW_TEMPERATURE_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 23, - "Name": "LOW_TEMPERATURE_STOP", - "Action": null, - "Description": null - }, - "HIGH_TEMPERATURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 24, - "Name": "HIGH_TEMPERATURE", - "Action": null, - "Description": null - }, - "HIGH_TEMPERATURE_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 25, - "Name": "HIGH_TEMPERATURE_STOP", - "Action": null, - "Description": null - }, - "RADIO_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 26, - "Name": "RADIO_ERROR", - "Action": null, - "Description": null - }, - "RADIO_ERROR_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 27, - "Name": "RADIO_ERROR_STOP", - "Action": null, - "Description": null - }, - "METROLOGY_PARAMS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 28, - "Name": "METROLOGY_PARAMS", - "Action": null, - "Description": null - }, - "METROLOGY_PARAMS_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 29, - "Name": "METROLOGY_PARAMS_STOP", - "Action": null, - "Description": null - }, - "METROLOGY_MEASURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 30, - "Name": "METROLOGY_MEASURE", - "Action": null, - "Description": null - }, - "METROLOGY_MEASURE_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 31, - "Name": "METROLOGY_MEASURE_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_6": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 32, - "Name": "UNALLOCATED_6", - "Action": null, - "Description": null - }, - "UNALLOCATED_6_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 33, - "Name": "UNALLOCATED_6_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_7": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 34, - "Name": "UNALLOCATED_7", - "Action": null, - "Description": null - }, - "UNALLOCATED_7_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 35, - "Name": "UNALLOCATED_7_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_8": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 36, - "Name": "UNALLOCATED_8", - "Action": null, - "Description": null - }, - "UNALLOCATED_8_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 37, - "Name": "UNALLOCATED_8_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_9": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 38, - "Name": "UNALLOCATED_9", - "Action": null, - "Description": null - }, - "UNALLOCATED_9_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 39, - "Name": "UNALLOCATED_9_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_10": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 40, - "Name": "UNALLOCATED_10", - "Action": null, - "Description": null - }, - "UNALLOCATED_10_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 41, - "Name": "UNALLOCATED_10_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_11": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 42, - "Name": "UNALLOCATED_11", - "Action": null, - "Description": null - }, - "UNALLOCATED_11_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 43, - "Name": "UNALLOCATED_11_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_12": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 44, - "Name": "UNALLOCATED_12", - "Action": null, - "Description": null - }, - "UNALLOCATED_12_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 45, - "Name": "UNALLOCATED_12_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_13": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 46, - "Name": "UNALLOCATED_13", - "Action": null, - "Description": null - }, - "UNALLOCATED_13_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 47, - "Name": "UNALLOCATED_13_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_14": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 48, - "Name": "UNALLOCATED_14", - "Action": null, - "Description": null - }, - "UNALLOCATED_14_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 49, - "Name": "UNALLOCATED_14_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_15": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 50, - "Name": "UNALLOCATED_15", - "Action": null, - "Description": null - }, - "UNALLOCATED_15_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 51, - "Name": "UNALLOCATED_15_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_16": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 52, - "Name": "UNALLOCATED_16", - "Action": null, - "Description": null - }, - "UNALLOCATED_16_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 53, - "Name": "UNALLOCATED_16_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_17": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 54, - "Name": "UNALLOCATED_17", - "Action": null, - "Description": null - }, - "UNALLOCATED_17_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 55, - "Name": "UNALLOCATED_17_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_18": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 56, - "Name": "UNALLOCATED_18", - "Action": null, - "Description": null - }, - "UNALLOCATED_18_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 57, - "Name": "UNALLOCATED_18_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_19": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 58, - "Name": "UNALLOCATED_19", - "Action": null, - "Description": null - }, - "UNALLOCATED_19_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 59, - "Name": "UNALLOCATED_19_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_20": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 60, - "Name": "UNALLOCATED_20", - "Action": null, - "Description": null - }, - "UNALLOCATED_20_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 61, - "Name": "UNALLOCATED_20_STOP", - "Action": null, - "Description": null - }, - "UNALLOCATED_21": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 62, - "Name": "UNALLOCATED_21", - "Action": null, - "Description": null - }, - "UNALLOCATED_21_STOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 63, - "Name": "UNALLOCATED_21_STOP", - "Action": null, - "Description": null - }, - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 64, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "LOCALE_UNDEFINED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 65, - "Name": "LOCALE_UNDEFINED", - "Action": null, - "Description": null - }, - "NO_SUCH_ALARM": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 66, - "Name": "NO_SUCH_ALARM", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 67, - "Name": "OUT_OF_RANGE", - "Action": null, - "Description": null - }, - "NOT_IMPLEMENTED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 68, - "Name": "NOT_IMPLEMENTED", - "Action": null, - "Description": null - }, - "BAD_CONFIG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 69, - "Name": "BAD_CONFIG", - "Action": null, - "Description": null - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 70, - "Name": "DID_NOT_STORE", - "Action": null, - "Description": null - }, - "STORE_PENDING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 71, - "Name": "STORE_PENDING", - "Action": null, - "Description": null - }, - "STRING_TOO_LONG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 72, - "Name": "STRING_TOO_LONG", - "Action": null, - "Description": null - } - } - }, - "FUNCTEST": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 10, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Name": "FUNCTEST", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "GP30Test": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "GP30Test", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "LCDTest": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "LCDTest", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "Iloop": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "Iloop", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "Pulse": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "Pulse", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "Pressure": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "Pressure", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "BatteryVoltage": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "BatteryVoltage", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "SupplyVoltage": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "SupplyVoltage", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "Temperature": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "Temperature", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT16", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT16", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "RFID": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "RFID", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "OpticalOutput": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "OpticalOutput", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "Radio": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "Radio", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "MultiTest": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "MultiTest", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "NFCUID": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "NFCUID", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "IsValueInRange": true - }, - "CPUTest": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "CPUTest", - "AppName": "FUNCTEST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 1003 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "BAD_CONFIG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "BAD_CONFIG", - "Action": null, - "Description": null - }, - "BAD_TEST": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "BAD_TEST", - "Action": null, - "Description": null - }, - "NO_RESULT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "NO_RESULT", - "Action": null, - "Description": null - } - } - }, - "OPTICALPORT": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 5, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 55 - }, - "Name": "OPTICALPORT", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "BaudRateCapabilities": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "BaudRateCapabilities", - "AppName": "OPTICALPORT", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 55 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Bitmask of supported rates on the given hardware.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Bitmask of supported rates on the given hardware.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PacketSizeCapabilities": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "PacketSizeCapabilities", - "AppName": "OPTICALPORT", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 55 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Bitmask of supported packet sizes.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": 64, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Bitmask of supported packet sizes.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": 64, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ProtocolVersion": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "ProtocolVersion", - "AppName": "OPTICALPORT", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 55 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Version number as fixed point 16.16 format BCD.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Version number as fixed point 16.16 format BCD.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "BaudRateSelected": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "BaudRateSelected", - "AppName": "OPTICALPORT", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 55 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Baud rate in bits per second.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Baud rate in bits per second.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PacketSizeSelected": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "PacketSizeSelected", - "AppName": "OPTICALPORT", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 55 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Packet size in bytes.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Packet size in bytes.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ExternalUartControl": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "ExternalUartControl", - "AppName": "OPTICALPORT", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 55 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 2, - "Lvl2": 2, - "Lvl3": 2, - "Lvl4": 2, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Surrenders the UART to another application", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 49, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 2, - "Lvl2": 2, - "Lvl3": 2, - "Lvl4": 2, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Surrenders the UART to another application", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 49, - "Last": 55 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "PAYLOAD_COUNT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "PAYLOAD_COUNT", - "Action": null, - "Description": null - }, - "INVALID_SUBREASON": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "INVALID_SUBREASON", - "Action": null, - "Description": null - }, - "INVALID_BAUDRATE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "INVALID_BAUDRATE", - "Action": null, - "Description": null - }, - "INVALID_BUFFERSIZE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "INVALID_BUFFERSIZE", - "Action": null, - "Description": null - }, - "CRCFAILURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "CRCFAILURE", - "Action": null, - "Description": null - }, - "UNRECOGNISEDCMD": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "UNRECOGNISEDCMD", - "Action": null, - "Description": null - }, - "FRAMING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "FRAMING", - "Action": null, - "Description": null - }, - "OVERFLOW": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "OVERFLOW", - "Action": null, - "Description": null - }, - "PACKETTIMEOUT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "PACKETTIMEOUT", - "Action": null, - "Description": null - }, - "INVALIDESCAPE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "INVALIDESCAPE", - "Action": null, - "Description": null - }, - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "TRAINING_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "TRAINING_FAILED", - "Action": null, - "Description": null - }, - "NOBREAK": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "NOBREAK", - "Action": null, - "Description": null - } - } - }, - "SENSUSRADIO": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 16, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Name": "SENSUSRADIO", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "TxInterval": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "TxInterval", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The SensusRF transmission interval in seconds for the BUPs", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The SensusRF transmission interval in seconds for the BUPs", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "OmTxInterval": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "OmTxInterval", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The Open Metering transmission interval in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The Open Metering transmission interval in seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "LatInterval": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "LatInterval", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The Listen After Talk interval as number 'n'. After every 'n' BUPs follows a BUP-LAT", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The Listen After Talk interval as number 'n'. After every 'n' BUPs follows a BUP-LAT", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "WakeupInterval": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "WakeupInterval", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The Wake Up interval in seconds 's'. Every 's' seconds will the meter sniff for a WakeUp tone. 's' == 0 means active sending and no sniffing", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The Wake Up interval in seconds 's'. Every 's' seconds will the meter sniff for a WakeUp tone. 's' == 0 means active sending and no sniffing", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "MbusState": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "MbusState", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The internal MBus state (Open Metering). A bit oriented value. Do not write if you do not know details", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 7, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The internal MBus state (Open Metering). A bit oriented value. Do not write if you do not know details", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 7, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "FrequencyIndicator": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "FrequencyIndicator", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number that shows the radio frequency used. Normally 433 or 868", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 433, - "Default": 433, - "Maximum": 868, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number that shows the radio frequency used. Normally 433 or 868", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 433, - "Default": 433, - "Maximum": 868, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": false - }, - "FrequencyOffset": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "FrequencyOffset", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A radio frequency calibration parameter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -32768, - "Default": 0, - "Maximum": 32767, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A radio frequency calibration parameter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -32768, - "Default": 0, - "Maximum": 32767, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "PowerLevel": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "PowerLevel", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A parameter for controling the radio power", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A parameter for controling the radio power", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "SystemState": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "SystemState", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The internal System State of the Radio", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The internal System State of the Radio", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "RadioAddress": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "RadioAddress", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The radio address used by the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The radio address used by the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "UtcTimeOffset": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "UtcTimeOffset", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The offset the between meter time and UTC", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -32768, - "Default": 0, - "Maximum": 32767, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The offset the between meter time and UTC", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -32768, - "Default": 0, - "Maximum": 32767, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "SentBytesCounter": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "SentBytesCounter", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of bytes sent during meter lifetime", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of bytes sent during meter lifetime", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "ReceivedBytesCounter": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "ReceivedBytesCounter", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of bytes received during meter lifetime", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of bytes received during meter lifetime", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "ResetCounter": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "ResetCounter", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of resets the application SensusRfRadio has performed over lifetime", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of resets the application SensusRfRadio has performed over lifetime", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "BootLoaderState": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "BootLoaderState", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An internal state (enum) regarding the firmwware update", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An internal state (enum) regarding the firmwware update", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "LeakFlowThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "LeakFlowThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The flow value of the leakage (low flow) detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 25, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The flow value of the leakage (low flow) detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 25, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "LeakFlowTimeThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "LeakFlowTimeThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the leakage (low flow) detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 360, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the leakage (low flow) detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 360, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "BrokenPipeFlowThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "BrokenPipeFlowThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The flow value of the broken pipe (high flow) detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2500, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The flow value of the broken pipe (high flow) detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2500, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "BrokenPipeFlowTimeThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "BrokenPipeFlowTimeThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the broken pipe (high flow) detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 180, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the broken pipe (high flow) detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 180, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "PressureMaxThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 20, - "Name": "PressureMaxThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The pressure value of the maximum (high) pressure alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 160, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The pressure value of the maximum (high) pressure alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 160, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "PressureMinThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 21, - "Name": "PressureMinThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The pressure value of the minimum (low) pressure alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The pressure value of the minimum (low) pressure alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "PressureLimitTimeMaxThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 22, - "Name": "PressureLimitTimeMaxThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the maximum (high) pressure alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the maximum (high) pressure alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "PressureLimitTimeMinThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 23, - "Name": "PressureLimitTimeMinThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The pressure value of the minimum (low) pressure alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The pressure value of the minimum (low) pressure alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "PressureMeasurePeriod": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 24, - "Name": "PressureMeasurePeriod", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period in seconds with which the pressure is measured", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period in seconds with which the pressure is measured", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "PressureUnit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 25, - "Name": "PressureUnit", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An enum respresenting the unit of pressure (0 = no pressure sensor)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An enum respresenting the unit of pressure (0 = no pressure sensor)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "PressureGaugeOffset": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 26, - "Name": "PressureGaugeOffset", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The gauge offset of the pressure sensor value in mBar", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The gauge offset of the pressure sensor value in mBar", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "TemperatureMaxThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 27, - "Name": "TemperatureMaxThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The temperature value of the maximum (high) temperature alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 50, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The temperature value of the maximum (high) temperature alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 50, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "TemperatureMinThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 28, - "Name": "TemperatureMinThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The temperature value of the minimum (low) temperature alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The temperature value of the minimum (low) temperature alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "TemperatureTimeMaxThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 29, - "Name": "TemperatureTimeMaxThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the maximum (high) temperature alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the maximum (high) temperature alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "TemperatureTimeMinThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 30, - "Name": "TemperatureTimeMinThreshold", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the minimum (low) temperature alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time value of the minimum (low) temperature alarm", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 600, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "TemperatureMeasurePeriod": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 31, - "Name": "TemperatureMeasurePeriod", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period in seconds with which the temperature is measured (only 60 is valid)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period in seconds with which the temperature is measured (only 60 is valid)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "TemperatureUnit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 32, - "Name": "TemperatureUnit", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An enum respresenting the unit of temperature (1= Celsius, 2= Fahrenheit)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An enum respresenting the unit of temperature (1= Celsius, 2= Fahrenheit)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "PulseOutWidth": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 33, - "Name": "PulseOutWidth", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An enumerator defining the currently active PulseWidth (0 ... 8 for non testmode values and 9 ... 15 for testmode)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 15, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An enumerator defining the currently active PulseWidth (0 ... 8 for non testmode values and 9 ... 15 for testmode)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 15, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "PulseOutDivisor": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 34, - "Name": "PulseOutDivisor", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number representing the pulse weight multiplicator 1, 10, 100 or 1000", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 1000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number representing the pulse weight multiplicator 1, 10, 100 or 1000", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 1000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "PulseOutMode": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 35, - "Name": "PulseOutMode", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An enum (0 to 3) representing the pulse output mode (0= deactivated, ...)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 3, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An enum (0 to 3) representing the pulse output mode (0= deactivated, ...)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 3, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "CurrentLoopMax": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 36, - "Name": "CurrentLoopMax", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A parameter regarding the non existing current output", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A parameter regarding the non existing current output", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "CurrentLoopSource": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 37, - "Name": "CurrentLoopSource", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A parameter regarding the non existing current output", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A parameter regarding the non existing current output", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "MainAlarmMask": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 38, - "Name": "MainAlarmMask", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value representing a mask of currently active (1) main alarms. These are the flow and genreral alarms", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 207, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value representing a mask of currently active (1) main alarms. These are the flow and genreral alarms", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 207, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "ExtendedAlarmMask": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 39, - "Name": "ExtendedAlarmMask", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value representing a mask of currently active (1) extended alarms. These are the temperature and pressure related alarms", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value representing a mask of currently active (1) extended alarms. These are the temperature and pressure related alarms", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "HistoricalAlarmsDays": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 40, - "Name": "HistoricalAlarmsDays", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number of days (0 = off) after which alarms are cleared from the alarm byte values when they are no longer active", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 29, - "Maximum": 250, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number of days (0 = off) after which alarms are cleared from the alarm byte values when they are no longer active", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 29, - "Maximum": 250, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "TestModeTime": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 43, - "Name": "TestModeTime", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value in minutes that defines the time the meter will stay in testmode after that mode was started", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value in minutes that defines the time the meter will stay in testmode after that mode was started", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "EncryptionKey": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 44, - "Name": "EncryptionKey", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT128", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The SensusRF encryption key (16 bytes) of the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT128, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT128", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The SensusRF encryption key (16 bytes) of the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT128, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "Authentification": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 45, - "Name": "Authentification", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The SensusRF Authentification PINs (3 PINs of 4 byte each) of the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The SensusRF Authentification PINs (3 PINs of 4 byte each) of the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "UpgFWVersion": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 46, - "Name": "UpgFWVersion", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The version of the complete Meter firmware package as represented by application FlexNetVersion", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The version of the complete Meter firmware package as represented by application FlexNetVersion", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "CustomerText": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 47, - "Name": "CustomerText", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An array of 8 bytes of freely programmable SensusRF customer Text", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An array of 8 bytes of freely programmable SensusRF customer Text", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "RadioLastReadTime": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 48, - "Name": "RadioLastReadTime", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint32_t value representing the meter's system DateTime when the radio had last time sent a telegram", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint32_t value representing the meter's system DateTime when the radio had last time sent a telegram", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "LowBatDateTime": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 49, - "Name": "LowBatDateTime", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint32_t value representing the meter's system DateTime when the radio had detected first the low-battery status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint32_t value representing the meter's system DateTime when the radio had detected first the low-battery status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "VeryLowBatDateTime": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 50, - "Name": "VeryLowBatDateTime", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A copy of the LowBatDateTime", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A copy of the LowBatDateTime", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "Unit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 51, - "Name": "Unit", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value representing the currently active volume unit used by radio", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value representing the currently active volume unit used by radio", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "ExtendedUnitFlags": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 52, - "Name": "ExtendedUnitFlags", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value representing additional information regarding the unit derived from the volume unit when used for flow or alternate volume", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value representing additional information regarding the unit derived from the volume unit when used for flow or alternate volume", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "OTAControlFlags": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 53, - "Name": "OTAControlFlags", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value normaly never changed regarding general behavior of the firmware related to Over The Air updates", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A byte value normaly never changed regarding general behavior of the firmware related to Over The Air updates", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "Tfx_Structure": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 54, - "Name": "Tfx_Structure", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A complex structure of 84 bytes related to the Tfx mode of the meter respectively the volume channel", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A complex structure of 84 bytes related to the Tfx mode of the meter respectively the volume channel", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "Dewa_Structure": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 55, - "Name": "Dewa_Structure", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A structure of 4 uint16_t values used for the customer DEWA", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A structure of 4 uint16_t values used for the customer DEWA", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "DataLogContents": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 56, - "Name": "DataLogContents", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A 4 byte bit mask representing whether the individual data items are logged in the periodic logging (1) or not (0)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 201335811, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A 4 byte bit mask representing whether the individual data items are logged in the periodic logging (1) or not (0)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 201335811, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": false - }, - "DataLogPeriod": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 57, - "Name": "DataLogPeriod", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number in seconds representing the time period for storing data records into the periodic logging file (memory)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 60, - "Maximum": 1440, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number in seconds representing the time period for storing data records into the periodic logging file (memory)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 60, - "Maximum": 1440, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": false - }, - "AverageFlowPeriod": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 58, - "Name": "AverageFlowPeriod", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number derived automatically from the DataLogPeriod that determins averaging periods for min and max calculations", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 5, - "Maximum": 60, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A number derived automatically from the DataLogPeriod that determins averaging periods for min and max calculations", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 5, - "Maximum": 60, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": false - }, - "FixedDateReadingContents": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 59, - "Name": "FixedDateReadingContents", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A 4 byte bit mask representing whether the individual data items are logged in the fixed date logging (1) or not (0)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 201335811, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A 4 byte bit mask representing whether the individual data items are logged in the fixed date logging (1) or not (0)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 201335811, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": false - }, - "FixedDateDayOfMonth": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 60, - "Name": "FixedDateDayOfMonth", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The day of the month (0 = every day) on which at 00:00 the fixed date logging takes place", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 1, - "Maximum": 28, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The day of the month (0 = every day) on which at 00:00 the fixed date logging takes place", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 1, - "Maximum": 28, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": false - }, - "MetroRadioLifeTimeCounter": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 61, - "Name": "MetroRadioLifeTimeCounter", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint32_t counter used originally for debugging during development. Meanwhile out of use", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint32_t counter used originally for debugging during development. Meanwhile out of use", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PowerLevelOption": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 62, - "Name": "PowerLevelOption", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint8_t value related to the power level used by the radio when an Irda module is present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint8_t value related to the power level used by the radio when an Irda module is present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "ImpedanceCodeNew": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 63, - "Name": "ImpedanceCodeNew", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint16_t value used for adjusting the antenna impedance", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 32767, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint16_t value used for adjusting the antenna impedance", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 32767, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "ImpedanceCodeOption": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 64, - "Name": "ImpedanceCodeOption", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint16_t value used for adjusting the antenna impedance if an Irda module is present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 32767, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An uint16_t value used for adjusting the antenna impedance if an Irda module is present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 32767, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "IrDAModulePresent": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 65, - "Name": "IrDAModulePresent", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A parameter of type bool that signals the presence of an Irda module. The value is controlled by the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A parameter of type bool that signals the presence of an Irda module. The value is controlled by the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 66, - "Name": "StoreConfiguration", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write this value to '1' to tell the radio application to store all data into the file system of the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write this value to '1' to tell the radio application to store all data into the file system of the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "LifeTimeSeconds": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 67, - "Name": "LifeTimeSeconds", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of seconds since the radio left the production (Set to 0 at the end of the production proccess)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of seconds since the radio left the production (Set to 0 at the end of the production proccess)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "DutyCycleCredit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 68, - "Name": "DutyCycleCredit", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value (counter) used only during development for release testing", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 412, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4320000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value (counter) used only during development for release testing", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 412, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4320000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ActivityCredit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 69, - "Name": "ActivityCredit", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A counter used to control the radio activity which must not exceed certain regulatory limits", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 412, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A counter used to control the radio activity which must not exceed certain regulatory limits", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 412, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PersistenceGroup1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 70, - "Name": "PersistenceGroup1", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage item for HistoricalErrorLimitCounters Reverse(1, hi) and Leak(0, lo)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 437, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 16711935, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage item for HistoricalErrorLimitCounters Reverse(1, hi) and Leak(0, lo)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 437, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 16711935, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PersistenceGroup2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 71, - "Name": "PersistenceGroup2", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage item for HistoricalErrorLimitCounters Magnet(3, hi) and Air(2, lo)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 437, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 16711935, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage item for HistoricalErrorLimitCounters Magnet(3, hi) and Air(2, lo)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 437, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 16711935, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PersistenceGroup3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 72, - "Name": "PersistenceGroup3", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage item for HistoricalErrorLimitCounters PressureMin(5, hi) and PressureMax(4, lo)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 437, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 16711935, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage item for HistoricalErrorLimitCounters PressureMin(5, hi) and PressureMax(4, lo)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 437, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 16711935, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PersistenceGroup4": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 73, - "Name": "PersistenceGroup4", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage item for HistoricalErrorLimitCounters TempMin(7, hi) and TempMax(6, lo)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 437, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 16711935, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage item for HistoricalErrorLimitCounters TempMin(7, hi) and TempMax(6, lo)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 437, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 16711935, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PressureCalibration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 74, - "Name": "PressureCalibration", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "MMC(is uint32_t type, minimum -18, maximum 127 ok?) An uint16_t value to add an offset to the measured pressure value from -1270 to +1270 mBar for field calibration purposes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 483, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "MMC(is uint32_t type, minimum -18, maximum 127 ok?) An uint16_t value to add an offset to the measured pressure value from -1270 to +1270 mBar for field calibration purposes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 483, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "TfxSecondaryChannelInfo_1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 75, - "Name": "TfxSecondaryChannelInfo_1", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "a 6 bytes big complex structure for the Tfx settings of the secondary channel 1 (temperature)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 482, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "a 6 bytes big complex structure for the Tfx settings of the secondary channel 1 (temperature)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 482, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "TfxSecondaryChannelInfo_2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 76, - "Name": "TfxSecondaryChannelInfo_2", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "a 6 bytes big complex structure for the Tfx settings of the secondary channel 2 (pressure)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 482, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "a 6 bytes big complex structure for the Tfx settings of the secondary channel 2 (pressure)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 482, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 0, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "OmsLastMessageCounter": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 77, - "Name": "OmsLastMessageCounter", - "AppName": "SENSUSRADIO", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 100, - "Last": 527 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An unit32_t value used to support/control the MB_MODE3_OMSv4B transmission uinque MCR", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 499, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "An unit32_t value used to support/control the MB_MODE3_OMSv4B transmission uinque MCR", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 499, - "Last": 527 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "UNKNOWN_PARAMETER", - "Action": "According to the source code no action assigned to this error code", - "Description": "It appears to be not used" - }, - "BAD_CONFIG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "BAD_CONFIG", - "Action": "Writing a new LOG or FDR content to Radio for forwarding to PeriodicLog", - "Description": "A bit mask is written which is not valid (e.g. not all mandatory bits are equal to 1)" - }, - "NO_CHANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "NO_CHANGE", - "Action": "Writing a new parameter value so several functions (e.g. Set HistoricalErrorLimitDays)", - "Description": "The new value has no effect: New value == Old value)" - }, - "STORE_PENDING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "STORE_PENDING", - "Action": "Writing SENSUSRADIO_STORECONFIGURATION to 1 ...", - "Description": "The initiated storing action is still ongoing and the file system is busy. The final status is pending" - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "DID_NOT_STORE", - "Action": "Writing SENSUSRADIO_STORECONFIGURATION to 1 ...", - "Description": "This is a final status. The initiated storing action failed. An alternate status would be 'OK'" - } - } - }, - "CONFIGEXCHANGE": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 4, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Name": "CONFIGEXCHANGE", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "Privilege", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Written to set the login level, followed by the password. Note, this can be read at any login level including 0.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Written to set the login level, followed by the password. Note, this can be read at any login level including 0.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "Password": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "Password", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT96", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 2, - "Lvl2": 2, - "Lvl3": 2, - "Lvl4": 2, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Password for logging in, requires 3 consecutive writes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT96, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT96", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 2, - "Lvl2": 2, - "Lvl3": 2, - "Lvl4": 2, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Password for logging in, requires 3 consecutive writes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT96, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "FOpen": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "FOpen", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to open a file on the meter, handle returned", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to open a file on the meter, handle returned", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "FClose": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "FClose", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to close a file on the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to close a file on the meter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "FRead": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "FRead", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to read bytes from an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to read bytes from an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "FWrite": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "FWrite", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to write bytes to an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to write bytes to an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "FSeek": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "FSeek", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to seek within an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to seek within an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "FTell": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "FTell", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to determine position within an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to determine position within an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "Remove": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "Remove", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to delete a file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to delete a file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "FEOF": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "FEOF", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this determine whether the current position in an open file is the end of the file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this determine whether the current position in an open file is the end of the file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "Catalogue": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "Catalogue", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Returns a list of files in the filesystem that matches a string containing wildcards passed in", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 49, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Returns a list of files in the filesystem that matches a string containing wildcards passed in", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 49, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "PCBSerialNumber": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "PCBSerialNumber", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "String containing the PCB serial number. Note, this can be read at any login level including 0", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 59, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "String containing the PCB serial number. Note, this can be read at any login level including 0", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 59, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "ConfigAccessRights": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "ConfigAccessRights", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bitmask of login levels permitted to manipulate dangerous files", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 59, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bitmask of login levels permitted to manipulate dangerous files", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 59, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "FFlush": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "FFlush", - "AppName": "CONFIGEXCHANGE", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 3, - "Last": 236 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to flush write buffers to an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 66, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Remote file operations, use this to flush write buffers to an open file", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 66, - "Last": 236 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "LOCKED_OUT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "LOCKED_OUT", - "Action": null, - "Description": null - }, - "AUTHENTICATION_FAILURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "AUTHENTICATION_FAILURE", - "Action": null, - "Description": null - }, - "ACCESS_DENIED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "ACCESS_DENIED", - "Action": null, - "Description": null - }, - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "IN_USE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "IN_USE", - "Action": null, - "Description": null - }, - "SIZES_DONT_MATCH": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "SIZES_DONT_MATCH", - "Action": null, - "Description": null - }, - "CANT_READ_CONFIG_FILE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "CANT_READ_CONFIG_FILE", - "Action": null, - "Description": null - }, - "USER_NOT_KNOWN": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "USER_NOT_KNOWN", - "Action": null, - "Description": null - }, - "CANT_CREATE_CONFIG_FILE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "CANT_CREATE_CONFIG_FILE", - "Action": null, - "Description": null - }, - "STORE_DIDNT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "STORE_DIDNT_STORE", - "Action": null, - "Description": null - }, - "STORE_CORRUPT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "STORE_CORRUPT", - "Action": null, - "Description": null - }, - "EXPECTED_WRITE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "EXPECTED_WRITE", - "Action": null, - "Description": null - }, - "EXPECTED_READ": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "EXPECTED_READ", - "Action": null, - "Description": null - }, - "STOP_CYCLING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "STOP_CYCLING", - "Action": null, - "Description": null - }, - "TOO_MANY_OPEN": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "TOO_MANY_OPEN", - "Action": null, - "Description": null - }, - "NEVER_OPENED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "NEVER_OPENED", - "Action": null, - "Description": null - }, - "FILE_PROTECTED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "FILE_PROTECTED", - "Action": null, - "Description": null - }, - "PARTIAL_RECALL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "PARTIAL_RECALL", - "Action": null, - "Description": null - }, - "DEFAULT_PASSWORD_USED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "DEFAULT_PASSWORD_USED", - "Action": null, - "Description": null - } - } - }, - "NFC": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 21, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 62 - }, - "Name": "NFC", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "EraseRMA": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "EraseRMA", - "AppName": "NFC", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 62 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 3 - }, - "Description": "Writing TRUE to this register erases the RMA area", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 62 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 3 - }, - "Description": "Writing TRUE to this register erases the RMA area", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 62 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "ForceUpdate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "ForceUpdate", - "AppName": "NFC", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 62 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write to this to force an update of some data. 0 - NDEF readings, 1 - NDEF details, 2 - RMA details", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 49, - "Last": 62 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write to this to force an update of some data. 0 - NDEF readings, 1 - NDEF details, 2 - RMA details", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 49, - "Last": 62 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "BAD_CONFIG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "BAD_CONFIG", - "Action": null, - "Description": null - }, - "NDEF_WRITE_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "NDEF_WRITE_FAIL", - "Action": null, - "Description": null - }, - "NDEF_VERIFY_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "NDEF_VERIFY_FAIL", - "Action": null, - "Description": null - }, - "NDEF_UPDATE_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "NDEF_UPDATE_FAIL", - "Action": null, - "Description": null - }, - "RMA_WRITE_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "RMA_WRITE_FAIL", - "Action": null, - "Description": null - }, - "RMA_VERIFY_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "RMA_VERIFY_FAIL", - "Action": null, - "Description": null - }, - "RMA_BAD_ENTRY": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "RMA_BAD_ENTRY", - "Action": null, - "Description": null - }, - "INIT_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "INIT_FAIL", - "Action": null, - "Description": null - }, - "NDEF_CONFIG_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "NDEF_CONFIG_FAIL", - "Action": null, - "Description": null - }, - "RMA_CONFIG_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "RMA_CONFIG_FAIL", - "Action": null, - "Description": null - }, - "NDEF_START_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "NDEF_START_FAIL", - "Action": null, - "Description": null - }, - "RMA_START_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "RMA_START_FAIL", - "Action": null, - "Description": null - } - } - }, - "SYSTEM": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 0, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Name": "SYSTEM", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "TriggerUpgrade": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "TriggerUpgrade", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Writing TRUE to this register internally calls SysTriggerUpgrade() then returns the result.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Writing TRUE to this register internally calls SysTriggerUpgrade() then returns the result.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "CheckPresence": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "CheckPresence", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing an application id number allows the version number of that application to be read back.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 150, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "RPC", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing an application id number allows the version number of that application to be read back.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 150, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.RPC, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "PCBSerialNumber": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "PCBSerialNumber", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "A string reporting the PCB serial number, this string must be set using production equipment.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 169, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "A string reporting the PCB serial number, this string must be set using production equipment.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 169, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "CustomerSerialNumber0": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "CustomerSerialNumber0", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A string reported relating to the customer, this string can be written only once after manufacture. If subsequent changes are needed CUSTOMERSERIALNUMBER1 must be used.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 170, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A string reported relating to the customer, this string can be written only once after manufacture. If subsequent changes are needed CUSTOMERSERIALNUMBER1 must be used.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 170, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "CustomerSerialNumber1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "CustomerSerialNumber1", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A string reported relating to the customer, this string can be written only once after manufacture. If subsequent changes are needed CUSTOMERSERIALNUMBER2 must be used.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 170, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A string reported relating to the customer, this string can be written only once after manufacture. If subsequent changes are needed CUSTOMERSERIALNUMBER2 must be used.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 170, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "CustomerSerialNumber2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "CustomerSerialNumber2", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A string reported relating to the customer, this string can be written only once after manufacture. If subsequent changes are needed CUSTOMERSERIALNUMBER3 must be used.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 170, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A string reported relating to the customer, this string can be written only once after manufacture. If subsequent changes are needed CUSTOMERSERIALNUMBER3 must be used.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 170, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "CustomerSerialNumber3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "CustomerSerialNumber3", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A string reported relating to the customer, this string can be written only once after manufacture. This is the last customer serial number change slot.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 170, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A string reported relating to the customer, this string can be written only once after manufacture. This is the last customer serial number change slot.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 170, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "MonotonicSeconds": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "MonotonicSeconds", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The number of seconds since reboot.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 176, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The number of seconds since reboot.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 176, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "CalendarSeconds": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "CalendarSeconds", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "TIME", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of seconds since 01-Jan-2000.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 176, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.TIME, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "00:00:00" - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "TIME", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of seconds since 01-Jan-2000.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 176, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.TIME, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": "00:00:00" - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "CoreRevision": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "CoreRevision", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "A string reporting the product version string held in the system core binary.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 196, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "A string reporting the product version string held in the system core binary.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 196, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "DriveCapacity": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "DriveCapacity", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing a drive number returns the drive capacity in bytes, or 0 if the drive is not ready, or an error if the driver is not configured to be present.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 233, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing a drive number returns the drive capacity in bytes, or 0 if the drive is not ready, or an error if the driver is not configured to be present.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 233, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ExitReason": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "ExitReason", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STATUS", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing an application id number allows the exit error number of that application to be read back.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 258, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": null, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STATUS", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing an application id number allows the exit error number of that application to be read back.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 258, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": null, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": false - }, - "CorePlatform": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "CorePlatform", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Reports the instruction set of the hosting microprocessor in b8-15 and allocated platform number in b0-7.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 265, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Reports the instruction set of the hosting microprocessor in b8-15 and allocated platform number in b0-7.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 265, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "CRC": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "CRC", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing an application id number allows the CRC of that application to be read back.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 279, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing an application id number allows the CRC of that application to be read back.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 279, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "UpgradePermissions": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "UpgradePermissions", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bitfield of permissions releated to firmware upgrade", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 470, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bitfield of permissions releated to firmware upgrade", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 470, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "CRC32": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "CRC32", - "AppName": "SYSTEM", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 534 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing an application id number allows the 32 bit CRC of that application to be read back.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 529, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing an application id number allows the 32 bit CRC of that application to be read back.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 529, - "Last": 534 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "OK": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "OK", - "Action": null, - "Description": null - }, - "ZERO_APPS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "ZERO_APPS", - "Action": null, - "Description": null - }, - "NO_MEMORY": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "NO_MEMORY", - "Action": null, - "Description": null - }, - "NOT_IMPLEMENTED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "NOT_IMPLEMENTED", - "Action": null, - "Description": null - }, - "BLOCK_NOT_FOUND": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "BLOCK_NOT_FOUND", - "Action": null, - "Description": null - }, - "NO_SUCH_VAR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "NO_SUCH_VAR", - "Action": null, - "Description": null - }, - "NO_CLIB": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "NO_CLIB", - "Action": null, - "Description": null - }, - "KEY_FAILURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "KEY_FAILURE", - "Action": null, - "Description": null - }, - "NO_SLOTS_FREE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "NO_SLOTS_FREE", - "Action": null, - "Description": null - }, - "VECTOR_OUT_OF_RANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "VECTOR_OUT_OF_RANGE", - "Action": null, - "Description": null - }, - "BAD_VECTOR_RELEASE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "BAD_VECTOR_RELEASE", - "Action": null, - "Description": null - }, - "DRIVER_BUSY": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "DRIVER_BUSY", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "OUT_OF_RANGE", - "Action": null, - "Description": null - }, - "CANT_CANCEL_TICK": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "CANT_CANCEL_TICK", - "Action": null, - "Description": null - }, - "ID_OUT_OF_RANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "ID_OUT_OF_RANGE", - "Action": null, - "Description": null - }, - "HANDLE_OUT_OF_RANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "HANDLE_OUT_OF_RANGE", - "Action": null, - "Description": null - }, - "INCAPABLE_HARDWARE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "INCAPABLE_HARDWARE", - "Action": null, - "Description": null - }, - "ALREADY_OPEN": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "ALREADY_OPEN", - "Action": null, - "Description": null - }, - "STRING_TOO_LONG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "STRING_TOO_LONG", - "Action": null, - "Description": null - }, - "CORRUPT_CONFIGURATION": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "CORRUPT_CONFIGURATION", - "Action": null, - "Description": null - }, - "TIMEOUT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 20, - "Name": "TIMEOUT", - "Action": null, - "Description": null - }, - "NO_PRIVILEGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 21, - "Name": "NO_PRIVILEGE", - "Action": null, - "Description": null - }, - "DEVICE_DORMANT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 22, - "Name": "DEVICE_DORMANT", - "Action": null, - "Description": null - }, - "MEDIA_FAILURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 23, - "Name": "MEDIA_FAILURE", - "Action": null, - "Description": null - }, - "BUFFER_OVERFLOW": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 24, - "Name": "BUFFER_OVERFLOW", - "Action": null, - "Description": null - }, - "UPGRADE_SYNTAX_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 25, - "Name": "UPGRADE_SYNTAX_ERROR", - "Action": null, - "Description": null - }, - "UPGRADE_DEPENDENCY_NOT_MET": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 26, - "Name": "UPGRADE_DEPENDENCY_NOT_MET", - "Action": null, - "Description": null - }, - "UPGRADE_MISSING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 27, - "Name": "UPGRADE_MISSING", - "Action": null, - "Description": null - }, - "UPGRADE_FRAGMENTED_BY_CLIB": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 28, - "Name": "UPGRADE_FRAGMENTED_BY_CLIB", - "Action": null, - "Description": null - }, - "TRUNCATED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 29, - "Name": "TRUNCATED", - "Action": null, - "Description": null - }, - "INVALID_HEADER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 30, - "Name": "INVALID_HEADER", - "Action": null, - "Description": null - }, - "WONT_DELETE_CLIB": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 31, - "Name": "WONT_DELETE_CLIB", - "Action": null, - "Description": null - }, - "BAD_REGISTER_VALUE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 32, - "Name": "BAD_REGISTER_VALUE", - "Action": null, - "Description": null - }, - "NO_CHANGE_MADE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 33, - "Name": "NO_CHANGE_MADE", - "Action": null, - "Description": null - }, - "NOT_ATOMIC": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 34, - "Name": "NOT_ATOMIC", - "Action": null, - "Description": null - }, - "CALENDAR_CHANGED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 35, - "Name": "CALENDAR_CHANGED", - "Action": null, - "Description": null - }, - "WORM_FIELD": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 36, - "Name": "WORM_FIELD", - "Action": null, - "Description": null - }, - "CONVERSION_UNSUPPORTED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 37, - "Name": "CONVERSION_UNSUPPORTED", - "Action": null, - "Description": null - }, - "CPU_PERMISSION_FAULT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 38, - "Name": "CPU_PERMISSION_FAULT", - "Action": null, - "Description": null - }, - "CPU_SOFTWARE_FAULT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 39, - "Name": "CPU_SOFTWARE_FAULT", - "Action": null, - "Description": null - }, - "CPU_DECODE_FAULT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 40, - "Name": "CPU_DECODE_FAULT", - "Action": null, - "Description": null - }, - "CPU_ADDRESS_ACCESS_FAULT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 41, - "Name": "CPU_ADDRESS_ACCESS_FAULT", - "Action": null, - "Description": null - }, - "CPU_UNCAUGHT_FAULT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 42, - "Name": "CPU_UNCAUGHT_FAULT", - "Action": null, - "Description": null - }, - "ACCURACY_LOST": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 43, - "Name": "ACCURACY_LOST", - "Action": null, - "Description": null - }, - "EXIT_FAILURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 44, - "Name": "EXIT_FAILURE", - "Action": null, - "Description": null - }, - "CANT_CANCEL_CALLBACK": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 45, - "Name": "CANT_CANCEL_CALLBACK", - "Action": null, - "Description": null - }, - "RECOVERED_SPACE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 46, - "Name": "RECOVERED_SPACE", - "Action": null, - "Description": null - }, - "DRIVE_FULL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 47, - "Name": "DRIVE_FULL", - "Action": null, - "Description": null - }, - "NO_FILE_HANDLES_AVAILABLE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 48, - "Name": "NO_FILE_HANDLES_AVAILABLE", - "Action": null, - "Description": null - }, - "EXCESSIVE_RESTARTS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 49, - "Name": "EXCESSIVE_RESTARTS", - "Action": null, - "Description": null - }, - "MPU_SETUP_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 50, - "Name": "MPU_SETUP_FAILED", - "Action": null, - "Description": null - }, - "DEVICE_NOT_OPEN": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 51, - "Name": "DEVICE_NOT_OPEN", - "Action": null, - "Description": null - }, - "NO_RESPONSE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 52, - "Name": "NO_RESPONSE", - "Action": null, - "Description": null - }, - "EXIT_WATCHDOG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 53, - "Name": "EXIT_WATCHDOG", - "Action": null, - "Description": null - }, - "WONT_DELETE_SPECIAL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 54, - "Name": "WONT_DELETE_SPECIAL", - "Action": null, - "Description": null - }, - "WONT_UPGRADE_SPECIAL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 55, - "Name": "WONT_UPGRADE_SPECIAL", - "Action": null, - "Description": null - } - } - }, - "METROLOGYASST": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 18, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Name": "METROLOGYASST", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "ILoopMaxFlowRate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "ILoopMaxFlowRate", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The flow rate that gives max output on the current loop", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 5, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The flow rate that gives max output on the current loop", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The flow rate that gives max output on the current loop", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "StoreConfiguration", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing TRUE to this register stores the values of the other registers to the non-volatile memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing TRUE to this register stores the values of the other registers to the non-volatile memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Writing TRUE to this register stores the values of the other registers to the non-volatile memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PulseWeight": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "PulseWeight", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Volume represented by one pulse in ml. If this is zero pulse output will not be enabled", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 1000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Volume represented by one pulse in ml. If this is zero pulse output will not be enabled", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 101 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 1000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Volume represented by one pulse. Units of (2^-5)ml. If this is zero pulse output will not be enabled", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 102, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 32000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Volume represented by one pulse. Units of (2^-5)ml. If this is zero pulse output will not be enabled", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 102, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 32000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": false - }, - "PulseMode": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "PulseMode", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The way pulses are output on the two available channels. This is an enum of type pulse_mode_t.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The way pulses are output on the two available channels. This is an enum of type pulse_mode_t.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The way pulses are output on the two available channels. This is an enum of type pulse_mode_t.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 7, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The way pulses are output on the two available channels. This is an enum of type pulse_mode_t.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 7, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "PulseLength": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "PulseLength", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The length of a pulse. This is an enum of type pulse_length_t.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 72 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 5, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The length of a pulse. This is an enum of type pulse_length_t.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 73, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The length of a pulse. This is an enum of type pulse_length_t.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The length of a pulse. This is an enum of type pulse_length_t.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "FlowUnits": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "FlowUnits", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of flow rate to display on the LCD. An enum of type displayflowunits_t", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 8, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of flow rate to display on the LCD. An enum of type displayflowunits_t", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of flow rate to display on the LCD. An enum of type displayflowunits_t", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "FlowPoint": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "FlowPoint", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Position of the decimal point on the LCD for flow rate. An enum of type displayflowpoint_t", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 8, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 4, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Position of the decimal point on the LCD for flow rate. An enum of type displayflowpoint_t", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 4, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Position of the decimal point on the LCD for flow rate. An enum of type displayflowpoint_t", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 4, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "ILoopRate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "ILoopRate", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The update rate for the current loop", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 9, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The update rate for the current loop", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The update rate for the current loop", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "TemperatureUnits": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "TemperatureUnits", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Units for displaying temperature on the LCD. 0 – Celcius, 1 – Fahrenheit.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 13, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Units for displaying temperature on the LCD. 0 – Celcius, 1 – Fahrenheit.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Units for displaying temperature on the LCD. 0 – Celcius, 1 – Fahrenheit.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "PressureUnits": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "PressureUnits", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Units for displaying pressure on the LCD. 0 – Mpa, 1 – PSI.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 13, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Units for displaying pressure on the LCD. 0 – Mpa, 1 – PSI.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Units for displaying pressure on the LCD. 0 – Mpa, 1 – PSI.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "PressureRate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "PressureRate", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time between pressure measurements in milliseconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 13, - "Last": 71 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 300000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time between pressure measurements in milliseconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 72, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time between pressure measurements in milliseconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time between pressure measurements in milliseconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 60000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PressureOffset": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "PressureOffset", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Value in Pa to subtract from measured value to correct for atmospheric pressure", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 13, - "Last": 58 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Value in Pa to subtract from measured value to correct for atmospheric pressure", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 59, - "Last": 79 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Value in Pa to subtract from measured value to correct for atmospheric pressure", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 80, - "Last": 81 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2000000, - "Default": 0, - "Maximum": 2000000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Value in Pa to subtract from measured value to correct for atmospheric pressure", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2000000, - "Default": 0, - "Maximum": 2000000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Value in Pa to subtract from measured value to correct for atmospheric pressure", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 82, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2000000, - "Default": 0, - "Maximum": 2000000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PressurePresent": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "PressurePresent", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether there is a pressure sensor present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 63, - "Last": 70 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether there is a pressure sensor present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 71, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether there is a pressure sensor present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 71, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "PressureMeasure": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "PressureMeasure", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write TRUE to trigger a pressure measurement, Read to get the latest measured value in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 65, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write TRUE to trigger a pressure measurement, Read to get the latest measured value in Pa", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 65, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "LatestFlowRate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "LatestFlowRate", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Returns the latest flow rate. Write 0 to change scaling to internal scaling, 1 to change to display scaling", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 92, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Returns the latest flow rate. Write 0 to change scaling to internal scaling, 1 to change to display scaling", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 92, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "GenerateFwdPulses": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "GenerateFwdPulses", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Generate some artificial pulses, used for testing", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 97, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Generate some artificial pulses, used for testing", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 97, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "GenerateRevPulses": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "GenerateRevPulses", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Generate some artificial pulses, used for testing", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 97, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Generate some artificial pulses, used for testing", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 97, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "PulseEvenDistribution": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "PulseEvenDistribution", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Boolean value for whether pulse output is to space the pulses evenly (TRUE) or grouped (FALSE)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Boolean value for whether pulse output is to space the pulses evenly (TRUE) or grouped (FALSE)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "PulseResolution": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "PulseResolution", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The number of bits of fractional resolution in a pulse event", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 7, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The number of bits of fractional resolution in a pulse event", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 7, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "PressureCalibration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "PressureCalibration", - "AppName": "METROLOGYASST", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 4, - "Last": 114 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Value in Pa to add to measured value after recalibration to correct for sensor drift over time", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 108, - "Last": 111 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -1000000, - "Default": 0, - "Maximum": 1000000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Value in Pa to add to measured value after recalibration to correct for sensor drift over time", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 112, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -4000000, - "Default": 0, - "Maximum": 4000000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Value in Pa to add to measured value after recalibration to correct for sensor drift over time", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 112, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -4000000, - "Default": 0, - "Maximum": 4000000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "BAD_CONFIG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "BAD_CONFIG", - "Action": null, - "Description": null - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "DID_NOT_STORE", - "Action": null, - "Description": null - }, - "PENDING_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "PENDING_STORE", - "Action": null, - "Description": null - } - } - }, - "LOGGER": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 8, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Name": "LOGGER", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "Quota": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "Quota", - "AppName": "LOGGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A quota in bytes for the log. The Logger does not apply any policy to how the quota is allocated, this is left as a restriction to be applied on a product by product basis.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4096, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A quota in bytes for the log. The Logger does not apply any policy to how the quota is allocated, this is left as a restriction to be applied on a product by product basis.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4096, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "Drive": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "Drive", - "AppName": "LOGGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The drive to write to.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The drive to write to.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "TriggerLogFlush": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "TriggerLogFlush", - "AppName": "LOGGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Writing TRUE will force a log flush", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 18 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Writing TRUE will force a log flush", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 18 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "StoreConfiguration", - "AppName": "LOGGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 18 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 16, - "Last": 18 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 16, - "Last": 18 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "RESTARTED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "RESTARTED", - "Action": null, - "Description": null - }, - "BLOCK_LISTING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "BLOCK_LISTING", - "Action": null, - "Description": null - }, - "PENDING_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "PENDING_STORE", - "Action": null, - "Description": null - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "DID_NOT_STORE", - "Action": null, - "Description": null - } - } - }, - "TESTMANAGER": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 98, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Name": "TESTMANAGER", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "OutputFile": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "OutputFile", - "AppName": "TESTMANAGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "TestNumber": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "TestNumber", - "AppName": "TESTMANAGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "TestStatus": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "TestStatus", - "AppName": "TESTMANAGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "TrapError": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "TrapError", - "AppName": "TESTMANAGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "TestParameter": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "TestParameter", - "AppName": "TESTMANAGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": null, - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": null, - "Last": 36 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "FAIL", - "Action": null, - "Description": null - }, - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "READ_ONLY_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "READ_ONLY_PARAMETER", - "Action": null, - "Description": null - }, - "BUSY": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "BUSY", - "Action": null, - "Description": null - }, - "STRING_TOO_LONG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "STRING_TOO_LONG", - "Action": null, - "Description": null - }, - "FOPEN_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "FOPEN_FAIL", - "Action": null, - "Description": null - }, - "FSEEK_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "FSEEK_FAIL", - "Action": null, - "Description": null - }, - "FWRITE_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "FWRITE_FAIL", - "Action": null, - "Description": null - }, - "FCLOSE_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "FCLOSE_FAIL", - "Action": null, - "Description": null - }, - "MALFORMED_FILENAME": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "MALFORMED_FILENAME", - "Action": null, - "Description": null - }, - "UNKNOWN_ACTION": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "UNKNOWN_ACTION", - "Action": null, - "Description": null - }, - "FILEREMOVE_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "FILEREMOVE_FAIL", - "Action": null, - "Description": null - }, - "FREAD_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "FREAD_FAIL", - "Action": null, - "Description": null - } - } - }, - "PERIODICLOG": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 17, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 75 - }, - "Name": "PERIODICLOG", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "DataLogContents": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "DataLogContents", - "AppName": "PERIODICLOG", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 75 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit Mask of the items to store in LOG memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 201335811, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit Mask of the items to store in LOG memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 201335811, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": false - }, - "DataLogPeriod": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "DataLogPeriod", - "AppName": "PERIODICLOG", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 75 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage Period of the LOG memory in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 60, - "Maximum": 1440, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Storage Period of the LOG memory in minutes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 60, - "Maximum": 1440, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": false - }, - "AverageFlowPeriod": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "AverageFlowPeriod", - "AppName": "PERIODICLOG", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 75 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Averiging period for the Min/Max calculation of LOG&FDR memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 5, - "Maximum": 60, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Averiging period for the Min/Max calculation of LOG&FDR memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 5, - "Maximum": 60, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": false - }, - "FixedDateReadingContents": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "FixedDateReadingContents", - "AppName": "PERIODICLOG", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 75 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit Mask of the items to store in FDR memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 201335811, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bit Mask of the items to store in FDR memory", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 201335811, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": false - }, - "FixedDateDayOfMonth": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "FixedDateDayOfMonth", - "AppName": "PERIODICLOG", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 75 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The day of month the FDR storage will take place at 00:00", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 1, - "Maximum": 28, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The day of month the FDR storage will take place at 00:00", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 1, - "Maximum": 28, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": false - }, - "PeriodicLogLifeTimeCounter": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "PeriodicLogLifeTimeCounter", - "AppName": "PERIODICLOG", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 75 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A counter used for internal purposes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 15, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A counter used for internal purposes", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 15, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ResetCounter": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "ResetCounter", - "AppName": "PERIODICLOG", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 75 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A counter to monitor the application resets", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A counter to monitor the application resets", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 75 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "FOPEN": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "FOPEN", - "Action": "Perform a FOPEN to any of the logging files logdata, fdrdata, evtdata ... ", - "Description": "FOPEN action failed due to any reason (means fopen error)" - }, - "BAD_CONFIG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "BAD_CONFIG", - "Action": "Handle the internal dual logging file access by SensusRfRadio and by PeriodicLogging", - "Description": "Mutual Exclude file access failed due to a wrong internal status order" - }, - "STRING_TOO_LONG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "STRING_TOO_LONG", - "Action": "Currently unused or not define action", - "Description": "Currently not generated or returned" - }, - "FILES_IN_USE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "FILES_IN_USE", - "Action": "Handle the internal dual logging file access by SensusRfRadio and by PeriodicLogging", - "Description": "File access denied because the other party has currently access to the file(s)" - } - } - }, - "POWERMON": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 1, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Name": "POWERMON", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "BatteryVoltage": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "BatteryVoltage", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Measured battery terminal voltage in 1mV units.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Measured battery terminal voltage in 1mV units.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "BatteryManufacturer": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "BatteryManufacturer", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "String describing the battery brand.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "Tadiran", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "String describing the battery brand.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": "Tadiran", - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "BatterySize": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "BatterySize", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "One of: 0 = battery absent; 1 = built in; 2 = other; 3 = AA; 4 = AAA; 5 = C; 6 = D; 255 = unknown", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "One of: 0 = battery absent; 1 = built in; 2 = other; 3 = AA; 4 = AAA; 5 = C; 6 = D; 255 = unknown", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "BatteryQuantity": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "BatteryQuantity", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The number of installed batteries.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 59 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": 1, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of installed batteries.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 60, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of installed batteries.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 60, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "BatteryRatedVoltage": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "BatteryRatedVoltage", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Datasheet terminal voltage in 100mV units as manufactured.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 36, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Datasheet terminal voltage in 100mV units as manufactured.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 36, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "BatteryVoltageMinThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "BatteryVoltageMinThreshold", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Datasheet terminal voltage in 100mV units below which the cell is considered empty.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 28, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Datasheet terminal voltage in 100mV units below which the cell is considered empty.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 28, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "BatterySelection": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "BatterySelection", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Chosen manufacturer from the internal lookup table of known batteries.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Chosen manufacturer from the internal lookup table of known batteries.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 20, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "TotalUsedCharge": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "TotalUsedCharge", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Accumulated charge used in uAs.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 24, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Accumulated charge used in uAs.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 24, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "IsValueInRange": true - }, - "TotalUsedSeconds": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "TotalUsedSeconds", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Elapsed time since manufacture in seconds.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 39, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Elapsed time since manufacture in seconds.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 39, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "WarnFromClamp": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "WarnFromClamp", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time in seconds for which the projected end time cannot exceed.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 39, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 473040000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Time in seconds for which the projected end time cannot exceed.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 39, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 473040000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "BatteryMilliAHrRating": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "BatteryMilliAHrRating", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Datasheet capacity in mAh units as manufactured.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19000, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "Datasheet capacity in mAh units as manufactured.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19000, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "StoreConfiguration", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 61, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 61, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "CriticalRepeatLimit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "CriticalRepeatLimit", - "AppName": "POWERMON", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 17, - "Last": 69 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of 15 minute periods of consecutive low battery voltage required for the battery to be deemed critically low", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 66, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 96, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of 15 minute periods of consecutive low battery voltage required for the battery to be deemed critically low", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 66, - "Last": 69 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 96, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "TABLE_FULL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "TABLE_FULL", - "Action": null, - "Description": null - }, - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "OUT_OF_RANGE", - "Action": null, - "Description": null - }, - "STOP_CYCLING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "STOP_CYCLING", - "Action": null, - "Description": null - }, - "TEMPERATURE_LIMIT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "TEMPERATURE_LIMIT", - "Action": null, - "Description": null - }, - "BATTERY_STATUS_CHANGED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "BATTERY_STATUS_CHANGED", - "Action": null, - "Description": null - }, - "BATTERY_CRITICAL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "BATTERY_CRITICAL", - "Action": null, - "Description": null - }, - "PENDING_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "PENDING_STORE", - "Action": null, - "Description": null - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "DID_NOT_STORE", - "Action": null, - "Description": null - } - } - }, - "GENESISFLOW": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 15, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Name": "GENESISFLOW", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "SampleRate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "SampleRate", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate in Hz that each GP30 takes measurements", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 203 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate in Hz that each GP30 takes measurements", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 204, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate in Hz that each GP30 takes measurements", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate in Hz that each GP30 takes measurements", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate in Hz that each GP30 takes measurements", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate in Hz that each GP30 takes measurements", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate in Hz that each GP30 takes measurements", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "FirstHitLvlUp1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "FirstHitLvlUp1", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "FirstHitLvlUp2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "FirstHitLvlUp2", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "FirstHitLvlUp3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "FirstHitLvlUp3", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the upstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "FirstHitLvlDown1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "FirstHitLvlDown1", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 1, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "FirstHitLvlDown2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "FirstHitLvlDown2", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 2, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "FirstHitLvlDown3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "FirstHitLvlDown3", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The first hit level in the downstream direction for channel 3, units of 0.88mV", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": 20, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "StartHit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "StartHit", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The hit number to consider as the first hit", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The hit number to consider as the first hit", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The hit number to consider as the first hit", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The hit number to consider as the first hit", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The hit number to consider as the first hit", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The hit number to consider as the first hit", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 6, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "AmplitudePeakDetectEnd": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "AmplitudePeakDetectEnd", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Where to stop running the amplitude peak detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Where to stop running the amplitude peak detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Where to stop running the amplitude peak detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Where to stop running the amplitude peak detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Where to stop running the amplitude peak detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Where to stop running the amplitude peak detection", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 19, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "NumFirePulses": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "NumFirePulses", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of pulses to fire for a measurement", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 17, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of pulses to fire for a measurement", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 17, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of pulses to fire for a measurement", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 17, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of pulses to fire for a measurement", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 17, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of pulses to fire for a measurement", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 17, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of pulses to fire for a measurement", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 17, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "DisplayPow10": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "DisplayPow10", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The weight of the lowest display digit as a power of 10. The accepted range of values depends on the LCD present and the DisplayUnits chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 36, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": -6, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The weight of the lowest display digit as a power of 10. The accepted range of values depends on the LCD present and the DisplayUnits chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": -6, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The weight of the lowest display digit as a power of 10. The accepted range of values depends on the LCD present and the DisplayUnits chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": -6, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The weight of the lowest display digit as a power of 10. The accepted range of values depends on the LCD present and the DisplayUnits chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": -6, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The weight of the lowest display digit as a power of 10. The accepted range of values depends on the LCD present and the DisplayUnits chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": -6, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The weight of the lowest display digit as a power of 10. The accepted range of values depends on the LCD present and the DisplayUnits chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -128, - "Default": -6, - "Maximum": 127, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "DisplayUnits": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "DisplayUnits", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of volume to display. The accepted range of values depends on the LCD present and the DisplayPow10 chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 36, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of volume to display. The accepted range of values depends on the LCD present and the DisplayPow10 chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of volume to display. The accepted range of values depends on the LCD present and the DisplayPow10 chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of volume to display. The accepted range of values depends on the LCD present and the DisplayPow10 chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of volume to display. The accepted range of values depends on the LCD present and the DisplayPow10 chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The units of volume to display. The accepted range of values depends on the LCD present and the DisplayPow10 chosen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "MeterSize": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "MeterSize", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The meter pipe size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 237 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 9, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The meter pipe size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 238, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 17, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The meter pipe size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 17, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The meter pipe size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 17, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The meter pipe size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 17, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The meter pipe size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 17, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The meter pipe size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 17, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "CalFactor1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "CalFactor1", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 200 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 62500, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 201, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "CalFactor2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "CalFactor2", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 200 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 62500, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 201, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "CalFactor3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "CalFactor3", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 200 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 62500, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 201, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration factor for ultrasonic channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 15625, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "ZeroOffset1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "ZeroOffset1", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 1 at zero flow. Value is in usual time of flight scaling (ie LS bit is 2^-38 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 132 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 1 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 133, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 1 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 1 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 1 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 1 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 1 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ZeroOffset2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "ZeroOffset2", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 2 at zero flow. Value is in usual time of flight scaling (ie LS bit is 2^-38 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 132 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 2 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 133, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 2 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 2 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 2 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 2 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 2 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ZeroOffset3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "ZeroOffset3", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 3 at zero flow. Value is in usual time of flight scaling (ie LS bit is 2^-38 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 45, - "Last": 132 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 3 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 133, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 3 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 3 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 3 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 3 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The delta time of flight expected on ultrasound channel 3 at zero flow. Value is in units 4 times smaller than usual time of flight scaling (ie LS bit is 2^-40 seconds)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ScaledBilling": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "ScaledBilling", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The scaled volume value shown on the display. In the units and precision set by DisplayUnits and DisplayPow10 respectively. Decimal point is not represented in this value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 47, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The scaled volume value shown on the display. In the units and precision set by DisplayUnits and DisplayPow10 respectively. Decimal point is not represented in this value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The scaled volume value shown on the display. In the units and precision set by DisplayUnits and DisplayPow10 respectively. Decimal point is not represented in this value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The scaled volume value shown on the display. In the units and precision set by DisplayUnits and DisplayPow10 respectively. Decimal point is not represented in this value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The scaled volume value shown on the display. In the units and precision set by DisplayUnits and DisplayPow10 respectively. Decimal point is not represented in this value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "IsValueInRange": true - }, - "ResetAccumulators": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 20, - "Name": "ResetAccumulators", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 2, - "Lvl2": 2, - "Lvl3": 2, - "Lvl4": 2, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write 1 to reset all accumulated volume to zero", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 47, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write 1 to reset all accumulated volume to zero", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write 1 to reset all accumulated volume to zero", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write 1 to reset all accumulated volume to zero", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write 1 to reset all accumulated volume to zero", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write 1 to reset all accumulated volume to zero", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "ForwardArrow": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 21, - "Name": "ForwardArrow", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow direction. 0 - undecided, 1 - right, 2 - left", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 47, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow direction. 0 - undecided, 1 - right, 2 - left", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow direction. 0 - undecided, 1 - right, 2 - left", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow direction. 0 - undecided, 1 - right, 2 - left", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow direction. 0 - undecided, 1 - right, 2 - left", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow direction. 0 - undecided, 1 - right, 2 - left", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 2, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "LedMode": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 22, - "Name": "LedMode", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The type of data output by the green LED", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 47, - "Last": 203 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The type of data output by the green LED", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 204, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The type of data output by the green LED", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The type of data output by the green LED", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The type of data output by the green LED", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The type of data output by the green LED", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The type of data output by the green LED", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 6, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "StoreCalibration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 23, - "Name": "StoreCalibration", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store calibration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 54, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store calibration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store calibration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store calibration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store calibration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "UnscaledFwd": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 24, - "Name": "UnscaledFwd", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 54, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The forward flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "IsValueInRange": true - }, - "UnscaledRev": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 25, - "Name": "UnscaledRev", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The reverse flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 54, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The reverse flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The reverse flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The reverse flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT64", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The reverse flow accumulator volume. The scale depends on the meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT64, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAAAAAAA=" - }, - "IsValueInRange": true - }, - "LowFlowThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 26, - "Name": "LowFlowThreshold", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The volume that must pass in LowFlowMaxPeriod for it to be registered as real flow. Units of ml", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 55, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The volume that must pass in LowFlowMaxPeriod for it to be registered as real flow. Units of ml", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The volume that must pass in LowFlowMaxPeriod for it to be registered as real flow. Units of ml", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The volume that must pass in LowFlowMaxPeriod for it to be registered as real flow. Units of ml", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The volume that must pass in LowFlowMaxPeriod for it to be registered as real flow. Units of ml", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The volume that must pass in LowFlowMaxPeriod for it to be registered as real flow. Units of ml", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "LowFlowMaxPeriod": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 27, - "Name": "LowFlowMaxPeriod", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time during which LowFlowThreshold volume must pass for it to be registered as real flow. Units of seconds << 16", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 55, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3932160, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time during which LowFlowThreshold volume must pass for it to be registered as real flow. Units of seconds << 16", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3932160, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time during which LowFlowThreshold volume must pass for it to be registered as real flow. Units of seconds << 16", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3932160, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time during which LowFlowThreshold volume must pass for it to be registered as real flow. Units of seconds << 16", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3932160, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time during which LowFlowThreshold volume must pass for it to be registered as real flow. Units of seconds << 16", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3932160, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time during which LowFlowThreshold volume must pass for it to be registered as real flow. Units of seconds << 16", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 3932160, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "UpdateThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 28, - "Name": "UpdateThreshold", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The amount of flow in ml to accumulate before updating the main scaled accumulators.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 55, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The amount of flow in ml to accumulate before updating the main scaled accumulators.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The amount of flow in ml to accumulate before updating the main scaled accumulators.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The amount of flow in ml to accumulate before updating the main scaled accumulators.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The amount of flow in ml to accumulate before updating the main scaled accumulators.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The amount of flow in ml to accumulate before updating the main scaled accumulators.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ArrowThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 29, - "Name": "ArrowThreshold", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The net volume in ml that must flow in one direction for the forward arrow to be set", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 55, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 5000000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The net volume in ml that must flow in one direction for the forward arrow to be set", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 5000000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The net volume in ml that must flow in one direction for the forward arrow to be set", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 5000000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The net volume in ml that must flow in one direction for the forward arrow to be set", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 5000000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The net volume in ml that must flow in one direction for the forward arrow to be set", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 5000000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The net volume in ml that must flow in one direction for the forward arrow to be set", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 5000000, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "FireBuffer1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 30, - "Name": "FireBuffer1", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 1 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 64, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 1 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 1 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 1 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 1 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 1 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "FireBuffer2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 31, - "Name": "FireBuffer2", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 2 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 64, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 2 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 2 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 2 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 2 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 2 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "FireBuffer3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 32, - "Name": "FireBuffer3", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 3 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 64, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 3 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 3 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 3 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 3 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The fire buffer within the GP30 on channel 3 to be used", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "TriggerActive": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 33, - "Name": "TriggerActive", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 2, - "Lvl2": 2, - "Lvl3": 2, - "Lvl4": 2, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write 1 to put GenesisFlow in Active mode. This is the normal measurement mode", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 75, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Active mode. This is the normal measurement mode", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 306 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Active mode. This is the normal measurement mode", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 307, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Active mode. This is the normal measurement mode", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Active mode. This is the normal measurement mode", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Active mode. This is the normal measurement mode", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Active mode. This is the normal measurement mode", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "TriggerIdle": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 34, - "Name": "TriggerIdle", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 0 to put GenesisFlow in Active mode, otherwise put GenesisFlow in Idle mode. Idle mode displays just the number written to TriggerIdle. No measurements are performed. Read returns the number written", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 75, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 0 to put GenesisFlow in Active mode, otherwise put GenesisFlow in Idle mode. Idle mode displays just the number written to TriggerIdle. No measurements are performed. Read returns the number written", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 0 to put GenesisFlow in Active mode, otherwise put GenesisFlow in Idle mode. Idle mode displays just the number written to TriggerIdle. No measurements are performed. Read returns the number written", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 0 to put GenesisFlow in Active mode, otherwise put GenesisFlow in Idle mode. Idle mode displays just the number written to TriggerIdle. No measurements are performed. Read returns the number written", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 0 to put GenesisFlow in Active mode, otherwise put GenesisFlow in Idle mode. Idle mode displays just the number written to TriggerIdle. No measurements are performed. Read returns the number written", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "MaxValidDeltaToF": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 35, - "Name": "MaxValidDeltaToF", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum delta time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 87, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 247390, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum delta time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 309237, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum delta time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 309237, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum delta time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 309237, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum delta time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 309237, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum delta time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 309237, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "MaxValidToF": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 36, - "Name": "MaxValidToF", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum absolute time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 87, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 24739011, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum absolute time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 24739011, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum absolute time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 24739011, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum absolute time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 24739011, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum absolute time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 24739011, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum absolute time of flight, above this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 24739011, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "MinValidToF": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 37, - "Name": "MinValidToF", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The minimum absolute time of flight, below this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 87, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 13743895, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The minimum absolute time of flight, below this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 13743895, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The minimum absolute time of flight, below this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 13743895, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The minimum absolute time of flight, below this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 13743895, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The minimum absolute time of flight, below this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 13743895, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The minimum absolute time of flight, below this the measurement is deemed bad. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 13743895, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "FirstHitPercent1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 38, - "Name": "FirstHitPercent1", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 93, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 1", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "FirstHitPercent2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 39, - "Name": "FirstHitPercent2", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 93, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 2", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "FirstHitPercent3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 40, - "Name": "FirstHitPercent3", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 93, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The percentage of the measured amplitude to use for the first hit level for channel 3", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "FirstHitShift": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 41, - "Name": "FirstHitShift", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value describing how long the amplitude is averaged over for calculating the first hit level. This is the amount each amplitude value is shifted down before being added to the moving average", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 93, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value describing how long the amplitude is averaged over for calculating the first hit level. This is the amount each amplitude value is shifted down before being added to the moving average", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value describing how long the amplitude is averaged over for calculating the first hit level. This is the amount each amplitude value is shifted down before being added to the moving average", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value describing how long the amplitude is averaged over for calculating the first hit level. This is the amount each amplitude value is shifted down before being added to the moving average", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value describing how long the amplitude is averaged over for calculating the first hit level. This is the amount each amplitude value is shifted down before being added to the moving average", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A value describing how long the amplitude is averaged over for calculating the first hit level. This is the amount each amplitude value is shifted down before being added to the moving average", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 3, - "Default": 4, - "Maximum": 8, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": false - }, - "FirstHitMinimum": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 42, - "Name": "FirstHitMinimum", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum absolute first hit level value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 93, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum absolute first hit level value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum absolute first hit level value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum absolute first hit level value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum absolute first hit level value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum absolute first hit level value", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 20, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "ToFErrorLimit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 43, - "Name": "ToFErrorLimit", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of ToF errors to allow before resetting the first hit levels to FirstHitMinimum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 93, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 16, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of ToF errors to allow before resetting the first hit levels to FirstHitMinimum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 16, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of ToF errors to allow before resetting the first hit levels to FirstHitMinimum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 16, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of ToF errors to allow before resetting the first hit levels to FirstHitMinimum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 16, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of ToF errors to allow before resetting the first hit levels to FirstHitMinimum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 16, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of ToF errors to allow before resetting the first hit levels to FirstHitMinimum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 16, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": false - }, - "FirstHitUpdatePeriod": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 44, - "Name": "FirstHitUpdatePeriod", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period (in seconds) between first hit level updates", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 99, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 10, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period (in seconds) between first hit level updates", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 10, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period (in seconds) between first hit level updates", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 10, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period (in seconds) between first hit level updates", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 10, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period (in seconds) between first hit level updates", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 10, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The period (in seconds) between first hit level updates", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 10, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "PipeFillingDelay": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 45, - "Name": "PipeFillingDelay", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time (in seconds) to maintain zero flow after leaving empty pipe", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 119, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time (in seconds) to maintain zero flow after leaving empty pipe", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time (in seconds) to maintain zero flow after leaving empty pipe", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time (in seconds) to maintain zero flow after leaving empty pipe", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time (in seconds) to maintain zero flow after leaving empty pipe", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The time (in seconds) to maintain zero flow after leaving empty pipe", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 30, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "ToFTempOffset1": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 46, - "Name": "ToFTempOffset1", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 1. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 124, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 1. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 1. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 1. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 1. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 1. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ToFTempOffset2": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 47, - "Name": "ToFTempOffset2", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 2. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 124, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 2. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 2. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 2. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 2. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 2. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ToFTempOffset3": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 48, - "Name": "ToFTempOffset3", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 3. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 124, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 3. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 3. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 3. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 3. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The calibration offset for the temperature measurement on channel 3. In units of 2^-38 seconds", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -2147483648, - "Default": 0, - "Maximum": 2147483647, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "ToFTempCalibrate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 49, - "Name": "ToFTempCalibrate", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 2, - "Lvl2": 2, - "Lvl3": 2, - "Lvl4": 2, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write the current temperature to this register to trigger a calibration step. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 124, - "Last": 204 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 270336, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write the current temperature to this register to trigger a calibration step. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 205, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 286720, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write the current temperature to this register to trigger a calibration step. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 286720, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write the current temperature to this register to trigger a calibration step. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 286720, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write the current temperature to this register to trigger a calibration step. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 286720, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write the current temperature to this register to trigger a calibration step. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 286720, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 50, - "Name": "StoreConfiguration", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 141, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "SealDisplay": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 51, - "Name": "SealDisplay", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to stop various display related registers being changed. Read back 1 for 'sealed' 0 for 'unsealed'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to stop various display related registers being changed. Read back 1 for 'sealed' 0 for 'unsealed'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to stop various display related registers being changed. Read back 1 for 'sealed' 0 for 'unsealed'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to stop various display related registers being changed. Read back 1 for 'sealed' 0 for 'unsealed'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to stop various display related registers being changed. Read back 1 for 'sealed' 0 for 'unsealed'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to stop various display related registers being changed. Read back 1 for 'sealed' 0 for 'unsealed'", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "TriggerTest": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 52, - "Name": "TriggerTest", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Test mode. This differs from normal measurement mode in that the volume is presented to 3 extra decimal places if possible. Read back 1 for Test mode, 0 otherwise", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 162, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Test mode. This differs from normal measurement mode in that the volume is presented to 3 extra decimal places if possible. Read back 1 for Test mode, 0 otherwise", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Test mode. This differs from normal measurement mode in that the volume is presented to 3 extra decimal places if possible. Read back 1 for Test mode, 0 otherwise", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Test mode. This differs from normal measurement mode in that the volume is presented to 3 extra decimal places if possible. Read back 1 for Test mode, 0 otherwise", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Test mode. This differs from normal measurement mode in that the volume is presented to 3 extra decimal places if possible. Read back 1 for Test mode, 0 otherwise", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to put GenesisFlow in Test mode. This differs from normal measurement mode in that the volume is presented to 3 extra decimal places if possible. Read back 1 for Test mode, 0 otherwise", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "MaxValidAmplitude": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 53, - "Name": "MaxValidAmplitude", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Maximum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 168, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2936012800, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Maximum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2936012800, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Maximum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2936012800, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Maximum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2936012800, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Maximum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2936012800, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Maximum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 2936012800, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "MinValidAmplitude": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 54, - "Name": "MinValidAmplitude", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 168, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 209715200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 209715200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 209715200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 209715200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 209715200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Minimum amplitude for a valid signal in 2^-22mV units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 209715200, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "HardErrorLimit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 55, - "Name": "HardErrorLimit", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of hard errors to allow before declaring a fatal error", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 176, - "Last": 267 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of hard errors to allow before declaring a fatal error", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 268, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of hard errors to allow before declaring a fatal error", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of hard errors to allow before declaring a fatal error", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of hard errors to allow before declaring a fatal error", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Number of hard errors to allow before declaring a fatal error", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 4, - "Maximum": 65535, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "Timeout": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 56, - "Name": "Timeout", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The timeout for an ultrasonic measurement (0 - 128us, 1 - 256us, 2 - 1024us, 3 - 4096us)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 273, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The timeout for an ultrasonic measurement (0 - 128us, 1 - 256us, 2 - 1024us, 3 - 4096us)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The timeout for an ultrasonic measurement (0 - 128us, 1 - 256us, 2 - 1024us, 3 - 4096us)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The timeout for an ultrasonic measurement (0 - 128us, 1 - 256us, 2 - 1024us, 3 - 4096us)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The timeout for an ultrasonic measurement (0 - 128us, 1 - 256us, 2 - 1024us, 3 - 4096us)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "MaxDeltaToFDeviation": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 57, - "Name": "MaxDeltaToFDeviation", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum deviation of a valid delta tof from the recent mean. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 280, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 109951, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum deviation of a valid delta tof from the recent mean. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 450, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 109951, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum deviation of a valid delta tof from the recent mean. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 500, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 109951, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum deviation of a valid delta tof from the recent mean. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 109951, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum deviation of a valid delta tof from the recent mean. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 109951, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "MaxTempRange": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 58, - "Name": "MaxTempRange", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of temperatures between channels before one is rejected. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 289, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 8192, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of temperatures between channels before one is rejected. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 451, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 8192, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of temperatures between channels before one is rejected. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 504, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 8192, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of temperatures between channels before one is rejected. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 8192, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of temperatures between channels before one is rejected. In units of 2^-12 degrees celcius", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 8192, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "MaxDeltaToFRange": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 59, - "Name": "MaxDeltaToFRange", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of delta time of flight between channels before one is rejected. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 289, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 137438, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of delta time of flight between channels before one is rejected. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 451, - "Last": 463 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 137438, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of delta time of flight between channels before one is rejected. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 504, - "Last": 509 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 137438, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of delta time of flight between channels before one is rejected. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 137438, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The maximum range of delta time of flight between channels before one is rejected. In 2^-38 seconds units", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 601, - "Last": 606 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 137438, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "LookupFileCrc": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 60, - "Name": "LookupFileCrc", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Read for the current loaded lookup table CRC, write to set the expected CRC.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 295, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Read for the current loaded lookup table CRC, write to set the expected CRC.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 295, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "DisplayLeadingZeros": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 61, - "Name": "DisplayLeadingZeros", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether to display leading zeros on row 2. If false leading zeros will be replaced with a space", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 302, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether to display leading zeros on row 2. If false leading zeros will be replaced with a space", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 302, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "InstallationCorrectionEnabled": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 62, - "Name": "InstallationCorrectionEnabled", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether the installation correction function is enabled or not", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether the installation correction function is enabled or not", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 1, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "InstallationDetectionThreshold": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 63, - "Name": "InstallationDetectionThreshold", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The threshold in ml for deciding on the meter installation", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 500, - "Maximum": 10000000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The threshold in ml for deciding on the meter installation", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 500, - "Maximum": 10000000, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "InstallationType": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 64, - "Name": "InstallationType", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The detected installation type, MS 16 bits is the type of installation, LS 16 bits is the proportion of correction to apply", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 163840, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The detected installation type, MS 16 bits is the type of installation, LS 16 bits is the proportion of correction to apply", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 163840, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "InstallationDetectionStatus": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 65, - "Name": "InstallationDetectionStatus", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Installation detection percentage complete, returns 100 if installation detection isn't running", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 100, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Installation detection percentage complete, returns 100 if installation detection isn't running", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 100, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "FractionalBars": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 66, - "Name": "FractionalBars", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether to display bars above the fractional digits on the LCD (if supported)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 3, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether to display bars above the fractional digits on the LCD (if supported)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "CalibrationCount": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 67, - "Name": "CalibrationCount", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "A count of the relevant calibration values, for internal use", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "A count of the relevant calibration values, for internal use", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 313, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "DelayedLedOff": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 68, - "Name": "DelayedLedOff", - "AppName": "GENESISFLOW", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 7, - "Last": 606 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write the number of seconds in the future to turn off the LED output. This countdown will be cancelled if LedMode is changed during the delay.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 314, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 28800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 2, - "Lvl6": 2, - "Lvl7": 2, - "Lvl8": 2 - }, - "Description": "Write the number of seconds in the future to turn off the LED output. This countdown will be cancelled if LedMode is changed during the delay.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 314, - "Last": 315 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 28800, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "BAD_TEST": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "BAD_TEST", - "Action": null, - "Description": null - }, - "BAD_CONFIG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "BAD_CONFIG", - "Action": null, - "Description": null - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "DID_NOT_STORE", - "Action": null, - "Description": null - }, - "STORE_PENDING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "STORE_PENDING", - "Action": null, - "Description": null - }, - "STORE_BUFFER_SIZE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "STORE_BUFFER_SIZE", - "Action": null, - "Description": null - }, - "STRING_TOO_LONG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "STRING_TOO_LONG", - "Action": null, - "Description": null - }, - "BAD_DISPLAY_MODE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "BAD_DISPLAY_MODE", - "Action": null, - "Description": null - }, - "GLASS_TOO_LONG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "GLASS_TOO_LONG", - "Action": null, - "Description": null - }, - "SLOT_NOT_YOURS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "SLOT_NOT_YOURS", - "Action": null, - "Description": null - }, - "SUBLIST_TOO_LONG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "SUBLIST_TOO_LONG", - "Action": null, - "Description": null - }, - "NO_TEMP_SENSOR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "NO_TEMP_SENSOR", - "Action": null, - "Description": null - }, - "UNDER_TEMP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "UNDER_TEMP", - "Action": null, - "Description": null - }, - "LOW_TEMP_WARNING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "LOW_TEMP_WARNING", - "Action": null, - "Description": null - }, - "HIGH_TEMP_WARNING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "HIGH_TEMP_WARNING", - "Action": null, - "Description": null - }, - "OVER_TEMP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "OVER_TEMP", - "Action": null, - "Description": null - }, - "MISMATCHING_LSB": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "MISMATCHING_LSB", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE_PWDIFF": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "OUT_OF_RANGE_PWDIFF", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE_AMPLITUDE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "OUT_OF_RANGE_AMPLITUDE", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE_TOF": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "OUT_OF_RANGE_TOF", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE_DTOF": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "OUT_OF_RANGE_DTOF", - "Action": null, - "Description": null - }, - "TOF_TIMEOUT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 20, - "Name": "TOF_TIMEOUT", - "Action": null, - "Description": null - }, - "CAL_CHANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 21, - "Name": "CAL_CHANGE", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE_INTERVAL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 22, - "Name": "OUT_OF_RANGE_INTERVAL", - "Action": null, - "Description": null - }, - "VALIDATE_FAIL": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 23, - "Name": "VALIDATE_FAIL", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE_TEMP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 24, - "Name": "OUT_OF_RANGE_TEMP", - "Action": null, - "Description": null - }, - "NOT_READY": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 25, - "Name": "NOT_READY", - "Action": null, - "Description": null - }, - "METROLOGY_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 26, - "Name": "METROLOGY_ERROR", - "Action": null, - "Description": null - }, - "GP30_ID_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 27, - "Name": "GP30_ID_ERROR", - "Action": null, - "Description": null - }, - "GP30_FLAG_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 28, - "Name": "GP30_FLAG_ERROR", - "Action": null, - "Description": null - }, - "GP30_TIMEOUT_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 29, - "Name": "GP30_TIMEOUT_ERROR", - "Action": null, - "Description": null - }, - "GP30_REQUEST_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 30, - "Name": "GP30_REQUEST_ERROR", - "Action": null, - "Description": null - }, - "GP30_SEQ_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 31, - "Name": "GP30_SEQ_ERROR", - "Action": null, - "Description": null - }, - "VALUE_SEALED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 32, - "Name": "VALUE_SEALED", - "Action": null, - "Description": null - }, - "IN_TEST_MODE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 33, - "Name": "IN_TEST_MODE", - "Action": null, - "Description": null - }, - "UNKNOWN_STATE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 34, - "Name": "UNKNOWN_STATE", - "Action": null, - "Description": null - }, - "DISPLAY_INIT_SUCCEEDED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 35, - "Name": "DISPLAY_INIT_SUCCEEDED", - "Action": null, - "Description": null - }, - "DISPLAY_INIT_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 36, - "Name": "DISPLAY_INIT_FAILED", - "Action": null, - "Description": null - }, - "GP30_INIT_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 37, - "Name": "GP30_INIT_FAILED", - "Action": null, - "Description": null - }, - "START_TIMER_SUCCEEDED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 38, - "Name": "START_TIMER_SUCCEEDED", - "Action": null, - "Description": null - }, - "START_TIMER_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 39, - "Name": "START_TIMER_FAILED", - "Action": null, - "Description": null - }, - "VOLUME_STORE_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 40, - "Name": "VOLUME_STORE_FAILED", - "Action": null, - "Description": null - }, - "EMPTY_PIPE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 41, - "Name": "EMPTY_PIPE", - "Action": null, - "Description": null - }, - "PARAMETER_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 42, - "Name": "PARAMETER_ERROR", - "Action": null, - "Description": null - }, - "GP30_INTERNAL_ERROR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 43, - "Name": "GP30_INTERNAL_ERROR", - "Action": null, - "Description": null - }, - "GLASS_TOO_SHORT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 44, - "Name": "GLASS_TOO_SHORT", - "Action": null, - "Description": null - }, - "STORE_CAL_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 45, - "Name": "STORE_CAL_FAILED", - "Action": null, - "Description": null - }, - "STORE_CONF_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 46, - "Name": "STORE_CONF_FAILED", - "Action": null, - "Description": null - }, - "MODE_CHANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 47, - "Name": "MODE_CHANGE", - "Action": null, - "Description": null - }, - "BAD_POW10": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 48, - "Name": "BAD_POW10", - "Action": null, - "Description": null - }, - "BAD_DECIMAL_SEPARATOR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 49, - "Name": "BAD_DECIMAL_SEPARATOR", - "Action": null, - "Description": null - }, - "BAD_UNITS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 50, - "Name": "BAD_UNITS", - "Action": null, - "Description": null - }, - "BAD_ICONS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 51, - "Name": "BAD_ICONS", - "Action": null, - "Description": null - }, - "BAD_THOUSAND_SEPARATOR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 52, - "Name": "BAD_THOUSAND_SEPARATOR", - "Action": null, - "Description": null - }, - "NEW_LOCALE_REJECTED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 53, - "Name": "NEW_LOCALE_REJECTED", - "Action": null, - "Description": null - }, - "SET_ACCUMULATORS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 54, - "Name": "SET_ACCUMULATORS", - "Action": null, - "Description": null - }, - "SEAL_OPENED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 55, - "Name": "SEAL_OPENED", - "Action": null, - "Description": null - }, - "CALIBRATION_RECALL_INCOMPLETE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 56, - "Name": "CALIBRATION_RECALL_INCOMPLETE", - "Action": null, - "Description": null - }, - "BAD_AMR_SETTINGS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 57, - "Name": "BAD_AMR_SETTINGS", - "Action": null, - "Description": null - }, - "SUSPECT_CYCLE_SKIP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 58, - "Name": "SUSPECT_CYCLE_SKIP", - "Action": null, - "Description": null - }, - "LOOKUP_FILE_LOADED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 59, - "Name": "LOOKUP_FILE_LOADED", - "Action": null, - "Description": null - }, - "LOOKUP_FILE_METERSIZE_CHANGED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 60, - "Name": "LOOKUP_FILE_METERSIZE_CHANGED", - "Action": null, - "Description": null - }, - "LOOKUP_FILE_FAILURE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 61, - "Name": "LOOKUP_FILE_FAILURE", - "Action": null, - "Description": null - }, - "LOOKUP_FILE_INVALID": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 62, - "Name": "LOOKUP_FILE_INVALID", - "Action": null, - "Description": null - }, - "LOOKUP_CRC_MISMATCH": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 63, - "Name": "LOOKUP_CRC_MISMATCH", - "Action": null, - "Description": null - }, - "LOOKUP_FILE_UNKNOWN_METERSIZE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 64, - "Name": "LOOKUP_FILE_UNKNOWN_METERSIZE", - "Action": null, - "Description": null - }, - "INSTALLATION_HIGH_TIME_DIFF": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 65, - "Name": "INSTALLATION_HIGH_TIME_DIFF", - "Action": null, - "Description": null - }, - "INSTALLATION_LOW_FLOW_IGNORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 66, - "Name": "INSTALLATION_LOW_FLOW_IGNORE", - "Action": null, - "Description": null - }, - "INSTALLATION_BAD_CHANNELS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 67, - "Name": "INSTALLATION_BAD_CHANNELS", - "Action": null, - "Description": null - }, - "INSTALLATION_FIXED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 68, - "Name": "INSTALLATION_FIXED", - "Action": null, - "Description": null - } - } - }, - "IRDA": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 20, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Name": "IRDA", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "PulseReportRate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "PulseReportRate", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate at which pulse reports are sent to the IrDA pulse adapter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate at which pulse reports are sent to the IrDA pulse adapter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate at which pulse reports are sent to the IrDA pulse adapter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "ENUM8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The rate at which pulse reports are sent to the IrDA pulse adapter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.ENUM8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "AdapterPresenceLimit": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "AdapterPresenceLimit", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of 15 minute periods we have to have received no valid IrDA messages to assume there is no adapter present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 18, - "Last": 28 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 1, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of 15 minute periods we have to have received no valid IrDA messages to assume there is no adapter present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 29, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of 15 minute periods we have to have received no valid IrDA messages to assume there is no adapter present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of 15 minute periods we have to have received no valid IrDA messages to assume there is no adapter present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of 15 minute periods we have to have received no valid IrDA messages to assume there is no adapter present", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 1, - "Default": 3, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": false - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": false - }, - "PulseSequence": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "PulseSequence", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The present sequence number used in pulse reports", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The present sequence number used in pulse reports", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 114 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The present sequence number used in pulse reports", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 115, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The present sequence number used in pulse reports", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The present sequence number used in pulse reports", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": null, - "Maximum": 255, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "StoreConfiguration", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 26, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 0, - "Lvl4": 0, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "AMRDigits": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "AMRDigits", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of digits to use for AMR", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 40, - "Last": 52 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 9, - "Maximum": 9, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of digits to use for AMR", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 53, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 9, - "Maximum": 9, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of digits to use for AMR", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 8, - "Maximum": 9, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of digits to use for AMR", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 8, - "Maximum": 9, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The number of digits to use for AMR", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 8, - "Maximum": 9, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "AMROffset": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "AMROffset", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The offset of the AMR smallest digit from the right (always negative)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 40, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -9, - "Default": 0, - "Maximum": 0, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The offset of the AMR smallest digit from the right (always negative)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -9, - "Default": 0, - "Maximum": 0, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The offset of the AMR smallest digit from the right (always negative)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -9, - "Default": 0, - "Maximum": 0, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "INT8", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "The offset of the AMR smallest digit from the right (always negative)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": -9, - "Default": 0, - "Maximum": 0, - "Type": { - "$type": "LaaPackages.Features.Cordonel.INT8, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "UI1203Fields": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "UI1203Fields", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A bitfield of the optional fields being used for UI-1203", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 40, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 268, - "Maximum": 268, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A bitfield of the optional fields being used for UI-1203", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 268, - "Maximum": 268, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A bitfield of the optional fields being used for UI-1203", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 268, - "Maximum": 268, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A bitfield of the optional fields being used for UI-1203", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 268, - "Maximum": 268, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "MfgDate": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "MfgDate", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A timestamp of meter manufacture in seconds since 1/1/2000 00:00:00 UTC", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 43, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A timestamp of meter manufacture in seconds since 1/1/2000 00:00:00 UTC", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "A timestamp of meter manufacture in seconds since 1/1/2000 00:00:00 UTC", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "DisplayAMRDigits": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "DisplayAMRDigits", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether or not to display AMR digits on the screen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 92, - "Last": 97 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether or not to display AMR digits on the screen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 98, - "Last": 136 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether or not to display AMR digits on the screen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Whether or not to display AMR digits on the screen", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 161, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - }, - "AdapterID": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "AdapterID", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The serial number of the current pulse adapter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 193, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "STRING", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The serial number of the current pulse adapter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 193, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.STRING, LaaPackages.Features.Cordonel", - "Bytes": null, - "Value": null - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "" - }, - "IsValueInRange": true - }, - "AdapterFwVersion": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "AdapterFwVersion", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The firmware version of the current pulse adapter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 193, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT16", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 1, - "Lvl8": 1 - }, - "Description": "The firmware version of the current pulse adapter", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 193, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT16, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAA=" - }, - "IsValueInRange": true - }, - "ExtendedResolution": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "ExtendedResolution", - "AppName": "IRDA", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 10, - "Last": 209 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Boolean controlled by UI-1236 to control resolution of cubic feet unit in some meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 210, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "BOOL", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Boolean controlled by UI-1236 to control resolution of cubic feet unit in some meter size", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 210, - "Last": 210 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 0, - "Maximum": 1, - "Type": { - "$type": "LaaPackages.Features.Cordonel.BOOL, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "Value": false - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "BAD_CONFIG": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "BAD_CONFIG", - "Action": null, - "Description": null - }, - "BAD_LENGTH": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "BAD_LENGTH", - "Action": null, - "Description": null - }, - "OUT_OF_RANGE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "OUT_OF_RANGE", - "Action": null, - "Description": null - }, - "PENDING_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "PENDING_STORE", - "Action": null, - "Description": null - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "DID_NOT_STORE", - "Action": null, - "Description": null - }, - "TOO_MANY_BYTES": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "TOO_MANY_BYTES", - "Action": null, - "Description": null - } - } - }, - "NA2WALARMS": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 23, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 41, - "Last": 102 - }, - "Name": "NA2WALARMS", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "StoreConfiguration", - "AppName": "NA2WALARMS", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 41, - "Last": 102 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 41, - "Last": 102 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Write 1 to store configuration values to non-volatile storage. Read back for status", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 41, - "Last": 102 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "PredefEnable": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "PredefEnable", - "AppName": "NA2WALARMS", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 41, - "Last": 102 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bitmask of enabled predefined alarms", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 41, - "Last": 102 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 561047, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "infrequentlyupdated", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Bitmask of enabled predefined alarms", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 41, - "Last": 102 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": 0, - "Default": 561047, - "Maximum": 4294967295, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "SENSOR_INVALID": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "SENSOR_INVALID", - "Action": null, - "Description": null - }, - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "ALARM_INVALID": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "ALARM_INVALID", - "Action": null, - "Description": null - }, - "UNIMPLEMENTED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "UNIMPLEMENTED", - "Action": null, - "Description": null - }, - "UNCONFIGURED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "UNCONFIGURED", - "Action": null, - "Description": null - }, - "CONFIG_INVALID": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "CONFIG_INVALID", - "Action": null, - "Description": null - }, - "NO_LATEST": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "NO_LATEST", - "Action": null, - "Description": null - }, - "FIXED_TYPE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "FIXED_TYPE", - "Action": null, - "Description": null - }, - "PREDEF_SET": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "PREDEF_SET", - "Action": null, - "Description": null - }, - "USERDEF_VOLUME_SET": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "USERDEF_VOLUME_SET", - "Action": null, - "Description": null - }, - "USERDEF_TEMPERATURE_SET": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "USERDEF_TEMPERATURE_SET", - "Action": null, - "Description": null - }, - "USERDEF_PRESSURE_SET": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "USERDEF_PRESSURE_SET", - "Action": null, - "Description": null - }, - "PREDEF_CLEAR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "PREDEF_CLEAR", - "Action": null, - "Description": null - }, - "USERDEF_VOLUME_CLEAR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "USERDEF_VOLUME_CLEAR", - "Action": null, - "Description": null - }, - "USERDEF_TEMPERATURE_CLEAR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "USERDEF_TEMPERATURE_CLEAR", - "Action": null, - "Description": null - }, - "USERDEF_PRESSURE_CLEAR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "USERDEF_PRESSURE_CLEAR", - "Action": null, - "Description": null - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "DID_NOT_STORE", - "Action": null, - "Description": null - }, - "STORE_PENDING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "STORE_PENDING", - "Action": null, - "Description": null - }, - "PREDEF_BACKUP_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "PREDEF_BACKUP_FAILED", - "Action": null, - "Description": null - }, - "PREDEF_RESTORE_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "PREDEF_RESTORE_FAILED", - "Action": null, - "Description": null - }, - "USERDEF_BACKUP_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 20, - "Name": "USERDEF_BACKUP_FAILED", - "Action": null, - "Description": null - }, - "USERDEF_RESTORE_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 21, - "Name": "USERDEF_RESTORE_FAILED", - "Action": null, - "Description": null - }, - "USERDEF_UNSUPPORTED_TYPE_FOR_SENSOR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 22, - "Name": "USERDEF_UNSUPPORTED_TYPE_FOR_SENSOR", - "Action": null, - "Description": null - } - } - }, - "NA2WLOGGER": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 22, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 199 - }, - "Name": "NA2WLOGGER", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "StoreConfiguration": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "StoreConfiguration", - "AppName": "NA2WLOGGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 199 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Store all configuration items in non-volatile memory.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 147, - "Last": 199 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 0, - "Lvl2": 0, - "Lvl3": 3, - "Lvl4": 0, - "Lvl5": 0, - "Lvl6": 0, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Store all configuration items in non-volatile memory.", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 147, - "Last": 199 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "LimitLogSize": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "LimitLogSize", - "AppName": "NA2WLOGGER", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 199 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Override the maximum number of entries per log (0 keeps default)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 147, - "Last": 199 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "static", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 1, - "Lvl2": 1, - "Lvl3": 1, - "Lvl4": 1, - "Lvl5": 1, - "Lvl6": 1, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Override the maximum number of entries per log (0 keeps default)", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 147, - "Last": 199 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "NOT_MAIN_LOOP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 2, - "Name": "NOT_MAIN_LOOP", - "Action": null, - "Description": null - }, - "LOG_INVALID": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 3, - "Name": "LOG_INVALID", - "Action": null, - "Description": null - }, - "LOG_OPEN_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 4, - "Name": "LOG_OPEN_FAILED", - "Action": null, - "Description": null - }, - "LOG_CLOSE_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 5, - "Name": "LOG_CLOSE_FAILED", - "Action": null, - "Description": null - }, - "LOG_REMOVE_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 6, - "Name": "LOG_REMOVE_FAILED", - "Action": null, - "Description": null - }, - "LOG_FLUSH_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 7, - "Name": "LOG_FLUSH_FAILED", - "Action": null, - "Description": null - }, - "LOG_CLEAR_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 8, - "Name": "LOG_CLEAR_FAILED", - "Action": null, - "Description": null - }, - "LOG_BAD_REQUEST": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 9, - "Name": "LOG_BAD_REQUEST", - "Action": null, - "Description": null - }, - "LOG_BAD_LIMIT": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 10, - "Name": "LOG_BAD_LIMIT", - "Action": null, - "Description": null - }, - "LOG_BUSY": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 11, - "Name": "LOG_BUSY", - "Action": null, - "Description": null - }, - "QUERY_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 12, - "Name": "QUERY_FAILED", - "Action": null, - "Description": null - }, - "QUERY_UNKNOWN_SENSOR": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 13, - "Name": "QUERY_UNKNOWN_SENSOR", - "Action": null, - "Description": null - }, - "QUERY_UNKNOWN_LOGFILE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 14, - "Name": "QUERY_UNKNOWN_LOGFILE", - "Action": null, - "Description": null - }, - "QUERY_BAD_ARGS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 15, - "Name": "QUERY_BAD_ARGS", - "Action": null, - "Description": null - }, - "QUERY_NOT_ENOUGH_SPACE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 16, - "Name": "QUERY_NOT_ENOUGH_SPACE", - "Action": null, - "Description": null - }, - "QUERY_NO_RECORDS_FOUND": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 17, - "Name": "QUERY_NO_RECORDS_FOUND", - "Action": null, - "Description": null - }, - "QUERY_FILE_READ_PROBLEM": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 18, - "Name": "QUERY_FILE_READ_PROBLEM", - "Action": null, - "Description": null - }, - "SETTINGS_STORE_FAILED": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 19, - "Name": "SETTINGS_STORE_FAILED", - "Action": null, - "Description": null - }, - "SETTINGS_BAD_SENSORID": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 20, - "Name": "SETTINGS_BAD_SENSORID", - "Action": null, - "Description": null - }, - "SETTINGS_BAD_PERIOD": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 21, - "Name": "SETTINGS_BAD_PERIOD", - "Action": null, - "Description": null - }, - "SETTINGS_BAD_CHECKSUM": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 22, - "Name": "SETTINGS_BAD_CHECKSUM", - "Action": null, - "Description": null - }, - "SETTINGS_BAD_TIMESTAMP": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 23, - "Name": "SETTINGS_BAD_TIMESTAMP", - "Action": null, - "Description": null - }, - "FILING_BAD": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 24, - "Name": "FILING_BAD", - "Action": null, - "Description": null - }, - "BAD_RECORD": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 25, - "Name": "BAD_RECORD", - "Action": null, - "Description": null - }, - "RANGE_SENSORID_BAD": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 26, - "Name": "RANGE_SENSORID_BAD", - "Action": null, - "Description": null - }, - "STORE_PENDING": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 27, - "Name": "STORE_PENDING", - "Action": null, - "Description": null - }, - "DID_NOT_STORE": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 28, - "Name": "DID_NOT_STORE", - "Action": null, - "Description": null - } - } - }, - "FLEXNETVERSION": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 24, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 9999 - }, - "Name": "FLEXNETVERSION", - "Registers": null, - "Status": null - }, - "FLEXNETSERIAL": { - "$type": "LaaPackages.Features.Cordonel.CordonelApp, LaaPackages.Features.Cordonel", - "Id": 26, - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 20 - }, - "Name": "FLEXNETSERIAL", - "Registers": { - "$type": "LaaPackages.Features.Cordonel.RegistersDictionary, LaaPackages.Features.Cordonel", - "UpgState": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "UpgState", - "AppName": "FLEXNETSERIAL", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 20 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem Ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 20 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem Ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 20 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - }, - "FwdlState": { - "$type": "LaaPackages.Features.Cordonel.Register, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "FwdlState", - "AppName": "FLEXNETSERIAL", - "AppVersion": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 1, - "Last": 20 - }, - "Details": { - "$type": "LaaPackages.Features.Cordonel.Detail[], LaaPackages.Features.Cordonel", - "$values": [ - { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem Ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 20 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - } - ] - }, - "Detail": { - "$type": "LaaPackages.Features.Cordonel.Detail, LaaPackages.Features.Cordonel", - "Type": "UINT32", - "StaticType": "dynamic", - "Privilege": { - "$type": "LaaPackages.Features.Cordonel.Privilege, LaaPackages.Features.Cordonel", - "Lvl1": 3, - "Lvl2": 3, - "Lvl3": 3, - "Lvl4": 3, - "Lvl5": 3, - "Lvl6": 3, - "Lvl7": 3, - "Lvl8": 3 - }, - "Description": "Lorem Ipsum", - "Version": { - "$type": "LaaPackages.Features.Cordonel.V, LaaPackages.Features.Cordonel", - "First": 2, - "Last": 20 - }, - "Values": { - "$type": "LaaPackages.Features.Cordonel.Value, LaaPackages.Features.Cordonel", - "Minimum": null, - "Default": null, - "Maximum": null, - "Type": { - "$type": "LaaPackages.Features.Cordonel.UINT32, LaaPackages.Features.Cordonel", - "Bytes": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "Value": 0 - }, - "IsInRange": true - } - }, - "HistoryId": 0, - "Value": { - "$type": "System.Byte[], mscorlib", - "$value": "AAAAAA==" - }, - "IsValueInRange": true - } - }, - "Status": { - "$type": "LaaPackages.Features.Cordonel.StatusDictionary, LaaPackages.Features.Cordonel", - "UNKNOWN_PARAMETER": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 0, - "Name": "UNKNOWN_PARAMETER", - "Action": null, - "Description": null - }, - "TOO_MANY_APPS": { - "$type": "LaaPackages.Features.Cordonel.Status, LaaPackages.Features.Cordonel", - "Id": 1, - "Name": "TOO_MANY_APPS", - "Action": null, - "Description": null - } - } - } - } -} \ No newline at end of file diff --git a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/App.razor b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/App.razor index f7b64226..abce4614 100644 --- a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/App.razor +++ b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/App.razor @@ -9,12 +9,15 @@ + + @* + + *@ Sensus Laatzen - + - diff --git a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/Data/SelectItem[T].cs b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/Data/SelectItem[T].cs new file mode 100644 index 00000000..96353d74 --- /dev/null +++ b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/Data/SelectItem[T].cs @@ -0,0 +1,23 @@ +namespace LaaProductionWeb.Blazor.Components.CSD.Data +{ + using System; + + public class SelectItem where T : SelectItem + { + public event Action ItemSelected; + + private bool selected; + public bool Selected + { + get => this.selected; + set + { + this.selected = value; + + this.NotifyItemSelected(); + } + } + + protected void NotifyItemSelected() => this.ItemSelected?.Invoke(this as T); + } +} diff --git a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/Data/VAKOMerkmale.cs b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/Data/VAKOMerkmale.cs new file mode 100644 index 00000000..3aaa2b04 --- /dev/null +++ b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/Data/VAKOMerkmale.cs @@ -0,0 +1,355 @@ +namespace LaaProductionWeb.Blazor.Components.CSD.Data +{ + using LaaPackages.SqlClient; + + using Microsoft.Extensions.Configuration; + + using System; + using System.Collections.Generic; + using System.Linq; + + public class VAKOMerkmale + { + private static int uiid; + + private readonly SqlConnection connection; + private readonly HashSet charCodes; + + private string basisFilter; + private string parameterFilter; + private string charCodeFilter; + private string basis; + private int stelle; + private int laenge; + + public VAKOMerkmale(IConfiguration configuration) + { + this.basisFilter = "%%"; + this.parameterFilter = "%%"; + this.charCodeFilter = "%%"; + + var connectionString = configuration.GetConnectionString("Auftrag"); + this.connection = SqlConnection.CreateSqlConnection(connectionString); + this.charCodes = []; + + this.UniqueBasisCodes = []; + this.UniqueParameters = []; + this.UniqueCharCodes = []; + this.SelectedItems = []; + + this.InitializeVAKOMErkmale(); + } + + public event Action SelectionChanged; + + public ICollection UniqueBasisCodes { get; private set; } + + public ICollection UniqueParameters { get; private set; } + + public ICollection UniqueCharCodes { get; private set; } + + public SortedDictionary>> SelectedItems { get; } + + public IEnumerable GetUniqueVAKOCodePatterns() + { + var vakoCodePatterns = new HashSet(); + var orderedCharCodes = this.UniqueCharCodes + .OrderBy(x => x.Stelle) + .GroupBy(x => x.Stelle) + .ToDictionary(x => x.Key, x => x.ToList()); + + if (orderedCharCodes.Count > 0) + { + var key = orderedCharCodes.Min(x => x.Key); + var patterns = new List(); + + GenerateUniqueCombinations(orderedCharCodes, patterns, this.basis, key); + + foreach (var pattern in patterns) + { + vakoCodePatterns.Add(new string(pattern)); + } + } + + return vakoCodePatterns; + } + + public void SetBasisFilter(object filter) + { + this.basisFilter = $"%{filter}%"; + + this.UpdateBasisCodes(); + this.UpdateParameters(); + this.UpdateCharCodes(); + } + + public void SetParameterFilter(object filter) + { + this.parameterFilter = $"%{filter}%"; + + this.UpdateParameters(); + this.UpdateCharCodes(); + } + + public void SetCharCodeFilter(object filter) + { + this.charCodeFilter = $"%{filter}%"; + + this.UpdateCharCodes(); + } + + public void BasisSelected(BasisCode basisCode) + { + this.basisFilter = $"%{basisCode.Name}%"; + this.basis = basisCode.Name; + this.stelle = 0; + this.laenge = 0; + + this.charCodes.Clear(); + this.SelectedItems.Clear(); + this.UpdateParameters(); + this.UpdateCharCodes(); + } + + public void ParameterSelected(Parameter parameter) + { + this.stelle = parameter.Stelle; + this.laenge = parameter.Laenge; + + this.UpdateParameters(); + this.UpdateCharCodes(); + } + + public void CharcodeSelected(CharCode charCode) + { + this.charCodes.Add(charCode); + this.charCodes.RemoveWhere(x => !x.Selected); + } + + private void InitializeVAKOMErkmale() + { + this.UpdateBasisCodes(); + this.UpdateParameters(); + } + + private void UpdateBasisCodes() + => this.UniqueBasisCodes = this.connection + .CreateCommand($@" + SELECT DISTINCT + vmm.Basis + FROM VAKO_Merkmale AS vmm + WHERE vmm.Basis IS NOT NULL + AND vmm.Basis LIKE @{nameof(basisFilter)} + ORDER BY vmm.Basis") + .SetParameter(nameof(this.basisFilter), this.basisFilter) + .ExecuteReader(x => new BasisCode + { + UIId = $"uiid_{++uiid}", + Name = x.GetValue(0) + }) + .ToList(); + + private void UpdateParameters() + => this.UniqueParameters = this.connection + .CreateCommand($@" + SELECT DISTINCT + vmm.Basis + , vmm.Bezeichnung + , vmm.Stelle + , vmm.Laenge + FROM VAKO_Merkmale AS vmm + WHERE vmm.Bezeichnung IS NOT NULL + AND vmm.Basis LIKE @{nameof(this.basisFilter)} + AND vmm.Bezeichnung LIKE @{nameof(this.parameterFilter)} + ORDER BY vmm.Bezeichnung") + .SetParameter(nameof(this.basisFilter), this.basisFilter) + .SetParameter(nameof(this.parameterFilter), this.parameterFilter) + .ExecuteReader(x => new Parameter + { + UIId = $"uiid_{++uiid}", + Basis = x.GetValue(0), + Name = x.GetValue(1), + Stelle = x.GetValue(2), + Laenge = x.GetValue(3) + }) + .ToList(); + + private void UpdateCharCodes() + { + this.UniqueCharCodes = this.connection + .CreateCommand($@" + SELECT DISTINCT + mm.Basis + , mm.Bezeichnung + , mm.Stelle + , mm.Laenge + , mm.Charcode + , mm.Wert + FROM (SELECT DISTINCT + vmm.Basis + , vmm.Bezeichnung + , vmm.Stelle + , vmm.Laenge + , vmm.Charcode + , vmm.Wert + , ROW_NUMBER() OVER (PARTITION BY vmm.Charcode ORDER BY vmm.Wert DESC) AS RowNr + FROM VAKO_Merkmale AS vmm + WHERE vmm.Basis LIKE @{nameof(this.basisFilter)} + AND vmm.Stelle = @{nameof(this.stelle)} + AND vmm.Laenge = @{nameof(this.laenge)}) + AS mm + WHERE RowNr = 1 + AND mm.Wert LIKE @{nameof(this.charCodeFilter)} + ORDER BY mm.Charcode") + .SetParameter(nameof(this.basisFilter), this.basisFilter) + .SetParameter(nameof(this.stelle), this.stelle) + .SetParameter(nameof(this.laenge), this.laenge) + .SetParameter(nameof(this.charCodeFilter), this.charCodeFilter) + .ExecuteReader(x => new CharCode + { + UIId = $"uiid_{++uiid}", + Basis = x.GetValue(0), + Name = x.GetValue(1), + Stelle = x.GetValue(2), + Laenge = x.GetValue(3), + Code = x.GetValue(4), + Value = x.GetValue(5), + }) + .ToList(); + + foreach (var charCode in charCodes) + { + charCode.Selected = this.charCodes + .FirstOrDefault(x => x.Basis == charCode.Basis + && x.Stelle == charCode.Stelle + && x.Laenge == charCode.Laenge + && x.Code == charCode.Code) + ?.Selected ?? false; + } + } + + private static void GenerateUniqueCombinations(Dictionary> charCodes, List patterns, string basis, int key) + { + var nextKey = charCodes.FirstOrDefault(x => x.Key > key).Key; + + if (nextKey > default(int)) + { + var parameter = charCodes[nextKey].FirstOrDefault(); + + if (parameter != null) + { + var length = parameter.Stelle + parameter.Laenge; + var tempalte = new char[length]; + + for (var ix = 0; ix < length; ix++) + { + tempalte[ix] = '_'; + } + + for (var ix = 0; ix < basis.Length; ix++) + { + tempalte[ix] = basis[ix]; + } + + tempalte[length - 1] = '%'; + + if (patterns.Count == 0) + { + patterns.Add(tempalte); + } + else + { + patterns[0] = tempalte; + } + } + + GenerateUniqueCombinations(charCodes, patterns, basis, nextKey); + } + + var templatePatterns = new List(); + templatePatterns.AddRange(patterns); + patterns.Clear(); + + foreach (var parameter in charCodes[key]) + { + foreach (var template in templatePatterns) + { + var pattern = new char[template.Length]; + + Array.Copy(template, 0, pattern, 0, pattern.Length); + + var codeLength = parameter.Code.Length; + + for (var charIX = 0; charIX < codeLength; charIX++) + { + pattern[parameter.Stelle + charIX - 1] = parameter.Code[charIX]; + } + + patterns.Add(pattern); + } + } + } + } + + public class BasisCode + { + public string UIId { get; set; } + + public string Name { get; set; } + } + + public class Parameter + { + public string UIId { get; set; } + + public string Name { get; set; } + + public string Basis { get; set; } + + public int Stelle { get; set; } + + public int Laenge { get; set; } + } + + public class CharCode + { + public event Action SelectionChanged; + + public string UIId { get; set; } + + public string Name { get; set; } + + public string Value { get; set; } + + public string Code { get; set; } + + public string Basis { get; set; } + + public int Stelle { get; set; } + + public int Laenge { get; set; } + + private bool selected; + public bool Selected + { + get => this.selected; + set + { + this.selected = value; + + this.SelectionChanged?.Invoke(); + } + } + + public override bool Equals(object other) + => other is CharCode charcode + && charcode.Code == this.Code; + + public override int GetHashCode() + => this.Code?.GetHashCode() + ?? default; + + public override string ToString() + => this.Code; + } +} diff --git a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/Models/CSDItem.cs b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/Models/CSDItem.cs new file mode 100644 index 00000000..85018084 --- /dev/null +++ b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/Models/CSDItem.cs @@ -0,0 +1,11 @@ +namespace LaaProductionWeb.Blazor.Components.CSD.Models +{ + public class CSDItem + { + public string Basis { get; set; } + + public int Stelle { get; set; } + + public int Laenge { get; set; } + } +} diff --git a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/Navbar.razor b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/Navbar.razor index 16c6f0d1..d471fda9 100644 --- a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/Navbar.razor +++ b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/Navbar.razor @@ -22,14 +22,6 @@ Typ - - - - - - - - @@ -72,14 +64,6 @@ - - - - - - - - diff --git a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/ProgrammingParameters.razor b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/ProgrammingParameters.razor index 36a4be7d..f1e71c77 100644 --- a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/ProgrammingParameters.razor +++ b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/ProgrammingParameters.razor @@ -1,3 +1,68 @@ @page "/csd/programmingparameters" - \ No newline at end of file +
+ +
+
+ + @foreach (var basisCode in this.VAKOMerkmale.UniqueBasisCodes) + { + var id = basisCode.Name.ToLower(); + +
+ + +
+ } +
+
+ + @foreach (var parameter in this.VAKOMerkmale.UniqueParameters) + { + var id = parameter.UIId; + +
+ + +
+ } +
+
+ + @foreach (var charCode in this.VAKOMerkmale.UniqueCharCodes) + { + charCode.SelectionChanged += this.StateHasChanged; + + var id = charCode.UIId; + +
+ + +
+ } +
+
+ @foreach (var pattern in this.VAKOMerkmale.GetUniqueVAKOCodePatterns()) + { +
+ @pattern +
+ } +
+
+
\ No newline at end of file diff --git a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/ProgrammingParameters.razor.cs b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/ProgrammingParameters.razor.cs index f351afc5..540aee44 100644 --- a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/ProgrammingParameters.razor.cs +++ b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/CSD/ProgrammingParameters.razor.cs @@ -7,6 +7,42 @@ public partial class ProgrammingParameters : ComponentBase { [Inject] - private CSDDBContext CSDDBContext { get; set; } + private VAKOMerkmale VAKOMerkmale { get; set; } + + private void FilterBasisCodes(ChangeEventArgs args) + { + this.VAKOMerkmale.SetBasisFilter(args.Value); + this.StateHasChanged(); + } + + private void FilterParameters(ChangeEventArgs args) + { + this.VAKOMerkmale.SetParameterFilter(args.Value); + this.StateHasChanged(); + } + + private void FilterCharcodes(ChangeEventArgs args) + { + this.VAKOMerkmale.SetCharCodeFilter(args.Value); + this.StateHasChanged(); + } + + private void BasisSelected(BasisCode basisCode, ChangeEventArgs args) + { + if (args.Value is string state && state == "on") + { + this.VAKOMerkmale.BasisSelected(basisCode); + this.StateHasChanged(); + } + } + + private void ParameterSelected(Parameter parameter, ChangeEventArgs args) + { + if (args.Value is string state && state == "on") + { + this.VAKOMerkmale.ParameterSelected(parameter); + this.StateHasChanged(); + } + } } } diff --git a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/HeliumTesterService.cs b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/HeliumTesterService.cs index 6fe8d911..21b61bcf 100644 --- a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/HeliumTesterService.cs +++ b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/HeliumTesterService.cs @@ -85,6 +85,7 @@ SELECT DISTINCT oar.Id AS OverallId , oar.ResultIdent AS PcbId + , oar.TestDoneTime AS DateTime , CAST(0 AS BIT) AS Selected , tv.Region + ' ' + CASE WHEN tv.RegionCode = 'E' THEN 'DN' ELSE '' END + tv.MeterSize + ' L=' @@ -103,7 +104,8 @@ LEFT JOIN ht.WaterMessurementsHistory AS wmh ON oar.Id = wmh.OverallResultId WHERE oar.Id IS NOT NULL - AND (hmh.Id IS NOT NULL OR wmh.Id IS NOT NULL) {where}"; + AND (hmh.Id IS NOT NULL OR wmh.Id IS NOT NULL) {where} + ORDER BY oar.TestDoneTime DESC"; return this.heliumTesterDbContext .Database diff --git a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/OverallItem.cs b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/OverallItem.cs index 250fb5ad..75c09bbb 100644 --- a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/OverallItem.cs +++ b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/OverallItem.cs @@ -10,6 +10,8 @@ public int PcbId { get; set; } + public DateTime DateTime { get; set; } + private bool selected; public bool Selected { diff --git a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/PcbItem.cs b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/PcbItem.cs new file mode 100644 index 00000000..837588ec --- /dev/null +++ b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/PcbItem.cs @@ -0,0 +1,6 @@ +namespace LaaProductionWeb.Blazor.Components.HeliumTester.Models +{ + public class PcbItem + { + } +} diff --git a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/PcbRecipeDTO.cs b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/PcbRecipeDTO.cs new file mode 100644 index 00000000..6058b465 --- /dev/null +++ b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/PcbRecipeDTO.cs @@ -0,0 +1,27 @@ +namespace LaaProductionWeb.Blazor.Components.HeliumTester.Models +{ + public class PcbRecipeDTO + { + public int Id { get; set; } + + public int PcbId { get; set; } + + public string HeliumRecipeId { get; set; } + + public string WaterRecipeId { get; set; } + + public int Region { get; set; } + + public int MeterSize { get; set; } + + public int BodyLength { get; set; } + + public bool Pressure { get; set; } + + public string PlateType { get; set; } + + public double DeadVolume { get; set; } + + public int MeterType { get; set; } + } +} \ No newline at end of file diff --git a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/PcbRecipeEntity.cs b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/PcbRecipeEntity.cs new file mode 100644 index 00000000..9fed6885 --- /dev/null +++ b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/PcbRecipeEntity.cs @@ -0,0 +1,27 @@ +namespace LaaProductionWeb.Blazor.Components.HeliumTester.Models +{ + public class PcbRecipeEntity + { + public int Id { get; set; } + + public int PcbId { get; set; } + + public int HeliumRecipeId { get; set; } + + public int WaterRecipeId { get; set; } + + public int Region { get; set; } + + public int MeterSize { get; set; } + + public int BodyLength { get; set; } + + public bool Pressure { get; set; } + + public string PlateType { get; set; } + + public double DeadVolume { get; set; } + + public int MeterType { get; set; } + } +} \ No newline at end of file diff --git a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/PcbRecipeModel.cs b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/PcbRecipeModel.cs new file mode 100644 index 00000000..5e3f4590 --- /dev/null +++ b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/PcbRecipeModel.cs @@ -0,0 +1,461 @@ +namespace LaaProductionWeb.Blazor.Components.HeliumTester.Models +{ + using LaaPackages.SqlClient; + + using Microsoft.Extensions.Configuration; + + using System; + using System.Collections.Generic; + using System.Linq; + + public class PcbRecipeModel + { + private readonly SqlConnection sqlConnection; + private PcbRecipeEntity pcbRecipeDTO; + + public PcbRecipeModel(IConfiguration configuration) + { + var connectionString = configuration.GetConnectionString("Auftrag"); + this.sqlConnection = SqlConnection.CreateSqlConnection(connectionString, this.ErrorLog); + this.pcbRecipeDTO = new PcbRecipeEntity(); + this.UpdateRecipes(); + } + + private void ErrorLog(string obj) + { + + } + + public event Action StateChanged; + + public int? Id => this.pcbRecipeDTO.Id == 0 ? null : this.pcbRecipeDTO.Id; + + public int? PcbId + { + get => this.pcbRecipeDTO.PcbId != 0 ? this.pcbRecipeDTO.PcbId : null; + set + { + this.pcbRecipeDTO.PcbId = value is int pcbId ? pcbId : default; + + this.PcbIdChanged(); + } + } + + public int MeterType + { + get => this.pcbRecipeDTO.MeterType; + set => this.pcbRecipeDTO.MeterType = value; + } + + public string Plate + { + get => this.pcbRecipeDTO.PlateType; + set + { + this.pcbRecipeDTO.PlateType = value; + + this.PlateTypeSelected(); + } + } + + public int? HeliumRecipeId + { + get => this.pcbRecipeDTO.HeliumRecipeId != 0 ? this.pcbRecipeDTO.HeliumRecipeId : null; + set + { + this.pcbRecipeDTO.HeliumRecipeId = value is int hid ? hid : default; + + this.HeliumRecipeSelected(); + } + } + + public int? WaterRecipeId + { + get => this.pcbRecipeDTO.WaterRecipeId != 0 ? this.pcbRecipeDTO.WaterRecipeId : null; + set + { + this.pcbRecipeDTO.WaterRecipeId = value is int wid ? wid : default; + + this.WaterRecipeSelected(); + } + } + + public int? Region + { + get => this.pcbRecipeDTO.Region != 0 ? this.pcbRecipeDTO.Region : null; + set => this.pcbRecipeDTO.Region = value is int region ? region : default; + } + + public int? MeterSize + { + get => this.pcbRecipeDTO.MeterSize != 0 ? this.pcbRecipeDTO.MeterSize : null; + set => this.pcbRecipeDTO.MeterSize = value is int meterSize ? meterSize : default; + } + + public int? BodyLength + { + get => this.pcbRecipeDTO.BodyLength != 0 ? this.pcbRecipeDTO.BodyLength : null; + set => this.pcbRecipeDTO.BodyLength = value is int bodyLength ? bodyLength : default; + } + + public bool HasPressureSensor + { + get => this.pcbRecipeDTO.Pressure; + set => this.pcbRecipeDTO.Pressure = value; + } + + public double? DeadVolume + { + get => this.pcbRecipeDTO.DeadVolume != 0 ? this.pcbRecipeDTO.DeadVolume : null; + set => this.pcbRecipeDTO.DeadVolume = value is double deadVolume ? deadVolume : default; + } + + public Dictionary HeliumRecipes { get; set; } = []; + + public Dictionary WaterRecipes { get; set; } = []; + + public IEnumerable Recipes { get; set; } + + public void TryAddOrUpdate() + { + if (this.Id is null) + { + this.sqlConnection + .CreateCommand($@" + INSERT INTO ht.PcbRecipe + ( PcbId + , HeliumRecipeId + , WaterRecipeId + , Region + , Dn + , Length + , Pressure + , Plate + , DeadVolume + , MeterType) + VALUES (@{nameof(this.pcbRecipeDTO.PcbId)} + , @{nameof(this.pcbRecipeDTO.HeliumRecipeId)} + , @{nameof(this.pcbRecipeDTO.WaterRecipeId)} + , @{nameof(this.pcbRecipeDTO.Region)} + , @{nameof(this.pcbRecipeDTO.MeterSize)} + , @{nameof(this.pcbRecipeDTO.BodyLength)} + , @{nameof(this.pcbRecipeDTO.Pressure)} + , @{nameof(this.pcbRecipeDTO.PlateType)} + , @{nameof(this.pcbRecipeDTO.DeadVolume)} + , @{nameof(this.pcbRecipeDTO.MeterType)})") + .SetParameter(nameof(this.pcbRecipeDTO.PcbId), this.pcbRecipeDTO.PcbId) + .SetParameter(nameof(this.pcbRecipeDTO.HeliumRecipeId), this.pcbRecipeDTO.HeliumRecipeId) + .SetParameter(nameof(this.pcbRecipeDTO.WaterRecipeId), this.pcbRecipeDTO.WaterRecipeId) + .SetParameter(nameof(this.pcbRecipeDTO.Region), this.pcbRecipeDTO.Region) + .SetParameter(nameof(this.pcbRecipeDTO.MeterSize), this.pcbRecipeDTO.MeterSize) + .SetParameter(nameof(this.pcbRecipeDTO.BodyLength), this.pcbRecipeDTO.BodyLength) + .SetParameter(nameof(this.pcbRecipeDTO.Pressure), this.pcbRecipeDTO.Pressure) + .SetParameter(nameof(this.pcbRecipeDTO.PlateType), this.pcbRecipeDTO.PlateType) + .SetParameter(nameof(this.pcbRecipeDTO.DeadVolume), this.pcbRecipeDTO.DeadVolume) + .SetParameter(nameof(this.pcbRecipeDTO.MeterType), this.pcbRecipeDTO.MeterType) + .ExecuteNonQuery(); + } + else + { + this.sqlConnection + .CreateCommand($@" + UPDATE ht.PcbRecipe + SET PcbId = @{nameof(this.pcbRecipeDTO.PcbId)} + , HeliumRecipeId = @{nameof(this.pcbRecipeDTO.HeliumRecipeId)} + , WaterRecipeId = @{nameof(this.pcbRecipeDTO.WaterRecipeId)} + , Region = @{nameof(this.pcbRecipeDTO.Region)} + , Dn = @{nameof(this.pcbRecipeDTO.MeterSize)} + , Length = @{nameof(this.pcbRecipeDTO.BodyLength)} + , Pressure = @{nameof(this.pcbRecipeDTO.Pressure)} + , Plate = @{nameof(this.pcbRecipeDTO.PlateType)} + , DeadVolume = @{nameof(this.pcbRecipeDTO.DeadVolume)} + , MeterType = @{nameof(this.pcbRecipeDTO.MeterType)} + WHERE Id = @{nameof(this.pcbRecipeDTO.Id)}") + .SetParameter(nameof(this.pcbRecipeDTO.Id), this.pcbRecipeDTO.Id) + .SetParameter(nameof(this.pcbRecipeDTO.PcbId), this.pcbRecipeDTO.PcbId) + .SetParameter(nameof(this.pcbRecipeDTO.HeliumRecipeId), this.pcbRecipeDTO.HeliumRecipeId) + .SetParameter(nameof(this.pcbRecipeDTO.WaterRecipeId), this.pcbRecipeDTO.WaterRecipeId) + .SetParameter(nameof(this.pcbRecipeDTO.Region), this.pcbRecipeDTO.Region) + .SetParameter(nameof(this.pcbRecipeDTO.MeterSize), this.pcbRecipeDTO.MeterSize) + .SetParameter(nameof(this.pcbRecipeDTO.BodyLength), this.pcbRecipeDTO.BodyLength) + .SetParameter(nameof(this.pcbRecipeDTO.Pressure), this.pcbRecipeDTO.Pressure) + .SetParameter(nameof(this.pcbRecipeDTO.PlateType), this.pcbRecipeDTO.PlateType) + .SetParameter(nameof(this.pcbRecipeDTO.DeadVolume), this.pcbRecipeDTO.DeadVolume) + .SetParameter(nameof(this.pcbRecipeDTO.MeterType), this.pcbRecipeDTO.MeterType) + .ExecuteNonQuery(); + } + + this.CleanDTO(); + } + + private void CleanDTO() + { + this.pcbRecipeDTO.Id = default; + this.PcbId = default; + this.HeliumRecipeId = default; + this.WaterRecipeId = default; + this.Region = default; + this.MeterSize = default; + this.BodyLength = default; + this.HasPressureSensor = default; + this.Plate = default; + this.DeadVolume = default; + this.MeterType = default; + } + + public void TryClearOrDelete() + { + this.sqlConnection + .CreateCommand($@"DELETE FROM ht.PcbRecipe WHERE Id = @{nameof(this.pcbRecipeDTO.Id)}") + .SetParameter(nameof(this.pcbRecipeDTO.Id), this.pcbRecipeDTO.Id) + .ExecuteNonQuery(); + + this.CleanDTO(); + } + + private void UpdateRecipes() + { + this.Recipes = this.sqlConnection + .CreateCommand(@" + SELECT TOP 20 + pr.Id + , pr.PcbId + , CONCAT(hv.Region, ' NW=', hv.MeterSize, ' BL=', hv.BodyLength, ' DS=', hv.HasPressureSensor) + , CONCAT(wv.Region, ' NW=', wv.MeterSize, ' BL=', wv.BodyLength, ' DS=', wv.HasPressureSensor) + , pr.Region + , pr.Dn + , pr.Length + , pr.Pressure + , pr.Plate + , pr.DeadVolume + , pr.MeterType + FROM ht.PcbRecipe AS pr + JOIN ht.HeliumRecipes AS hr + ON pr.HeliumRecipeId = hr.Id + JOIN ht.TestVariants AS hv + ON hr.VariantId = hv.Id + JOIN ht.WaterRecipes AS wr + ON pr.WaterRecipeId = wr.Id + JOIN ht.TestVariants AS wv + ON hr.VariantId = wv.Id + ORDER BY 1 DESC") + .ExecuteReader(x => new PcbRecipeDTO + { + Id = x.GetValue(0), + PcbId = x.GetValue(1), + HeliumRecipeId = x.GetValue(2), + WaterRecipeId = x.GetValue(3), + Region = x.GetValue(4), + MeterSize = x.GetValue(5), + BodyLength = x.GetValue(6), + Pressure = x.GetValue(7), + PlateType = x.GetValue(8), + DeadVolume = x.GetValue(9), + MeterType = x.GetValue(10), + }); + } + + private void PlateTypeSelected() + { + if (!string.IsNullOrWhiteSpace(this.Plate)) + { + var tokens = this.Plate + .Replace("DN", string.Empty) + .Split('_', StringSplitOptions.RemoveEmptyEntries); + + if (tokens.Length == 2) + { + if (int.TryParse($"{tokens[0]}", out var meterSize)) + { + this.MeterSize = meterSize; + } + + this.Region = tokens[1] == "NA" ? 1 : tokens[1] == "EMEA" ? 2 : null; + } + } + + var testVariant = this.sqlConnection + .CreateCommand($@" + SELECT DISTINCT + RegionCode + , MeterSizeCode + , DeadVolume + FROM ht.TestVariants + WHERE Plate = @{nameof(this.Plate)}") + .SetParameter(nameof(this.Plate), this.Plate) + .FirstOrDefault(x => new + { + RegionCode = x.GetValue(0), + MeterSizeCode = x.GetValue(1), + DeadVolume = x.GetValue(2), + }); + + if (testVariant is not null) + { + this.DeadVolume = testVariant.DeadVolume; + this.HeliumRecipes = this.sqlConnection + .CreateCommand($@" + SELECT DISTINCT + hr.Id + , CONCAT(tv.Region, ' NW=', tv.MeterSize, ' BL=', tv.BodyLength, ' DS=', tv.HasPressureSensor) + FROM ht.HeliumRecipes AS hr + JOIN ht.TestVariants AS tv + ON hr.VariantId = tv.Id + WHERE hr.MatchRegion = @{nameof(testVariant.RegionCode)} + AND hr.MatchMeterSize = @{nameof(testVariant.MeterSizeCode)}") + .SetParameter(nameof(testVariant.RegionCode), testVariant.RegionCode) + .SetParameter(nameof(testVariant.MeterSizeCode), testVariant.MeterSizeCode) + .ExecuteReader(x => new + { + Key = x.GetValue(0), + Value = x.GetValue(1), + }) + .ToDictionary(x => x.Key, x => x.Value); + + this.WaterRecipes = this.sqlConnection + .CreateCommand($@" + SELECT DISTINCT + hr.Id + , CONCAT(tv.Region, ' NW=', tv.MeterSize, ' BL=', tv.BodyLength, ' DS=', tv.HasPressureSensor) + FROM ht.WaterRecipes AS hr + JOIN ht.TestVariants AS tv + ON hr.VariantId = tv.Id + WHERE hr.MatchRegion = @{nameof(testVariant.RegionCode)} + AND hr.MatchMeterSize = @{nameof(testVariant.MeterSizeCode)}") + .SetParameter(nameof(testVariant.RegionCode), testVariant.RegionCode) + .SetParameter(nameof(testVariant.MeterSizeCode), testVariant.MeterSizeCode) + .ExecuteReader(x => new + { + Key = x.GetValue(0), + Value = x.GetValue(1), + }) + .ToDictionary(x => x.Key, x => x.Value); + } + else + { + this.HeliumRecipes = []; + this.WaterRecipes = []; + } + } + + private void HeliumRecipeSelected() + { + if (this.HeliumRecipeId != null) + { + this.sqlConnection + .CreateCommand($@" + SELECT tv.BodyLength + , tv.HasPressureSensor + FROM ht.HeliumRecipes AS hr + JOIN ht.TestVariants AS tv + ON hr.VariantId = tv.Id + WHERE hr.Id = @{nameof(this.HeliumRecipeId)}") + .SetParameter(nameof(this.HeliumRecipeId), this.HeliumRecipeId) + .FirstOrDefault(x => + { + this.BodyLength = x.GetValue(0); + this.HasPressureSensor = x.GetValue(1); + }); + } + } + + private void WaterRecipeSelected() + { + if (this.WaterRecipeId != null) + { + this.sqlConnection + .CreateCommand($@" + SELECT tv.BodyLength + , tv.HasPressureSensor + FROM ht.WaterRecipes AS hr + JOIN ht.TestVariants AS tv + ON hr.VariantId = tv.Id + WHERE hr.Id = @{nameof(this.HeliumRecipeId)}") + .SetParameter(nameof(this.HeliumRecipeId), this.HeliumRecipeId) + .FirstOrDefault(x => + { + this.BodyLength = x.GetValue(0); + this.HasPressureSensor = x.GetValue(1); + }); + } + } + + private void PcbIdChanged() + { + this.sqlConnection + .CreateCommand($@" + SELECT pr.Id + , pr.PcbId + , pr.HeliumRecipeId + , pr.WaterRecipeId + , pr.Region + , pr.Dn + , pr.Length + , pr.Pressure + , pr.Plate + , pr.DeadVolume + , pr.MeterType + FROM ht.PcbRecipe AS pr + WHERE pr.PcbId = @{nameof(this.PcbId)}") + .SetParameter(nameof(this.PcbId), this.PcbId) + .FirstOrDefault(x => + { + this.pcbRecipeDTO.Id = x.GetValue(0); + this.pcbRecipeDTO.PcbId = x.GetValue(1); + this.pcbRecipeDTO.HeliumRecipeId = x.GetValue(2); + this.pcbRecipeDTO.WaterRecipeId = x.GetValue(3); + this.pcbRecipeDTO.Region = x.GetValue(4); + this.pcbRecipeDTO.MeterSize = x.GetValue(5); + this.pcbRecipeDTO.BodyLength = x.GetValue(6); + this.pcbRecipeDTO.Pressure = x.GetValue(7); + this.pcbRecipeDTO.PlateType = x.GetValue(8); + this.pcbRecipeDTO.DeadVolume = x.GetValue(9); + this.pcbRecipeDTO.MeterType = x.GetValue(10); + }); + + if (this.Id > 0) + { + this.HeliumRecipes = this.sqlConnection + .CreateCommand($@" + SELECT DISTINCT + hr.Id + , CONCAT(tv.Region, ' NW=', tv.MeterSize, ' BL=', tv.BodyLength, ' DS=', tv.HasPressureSensor) + FROM ht.HeliumRecipes AS hr + JOIN ht.HeliumRecipes AS _hr + ON hr.MatchRegion = _hr.MatchRegion + AND hr.MatchMeterSize = _hr.MatchMeterSize + JOIN ht.TestVariants AS tv + ON hr.VariantId = tv.Id + WHERE _hr.Id = @{nameof(this.HeliumRecipeId)}") + .SetParameter(nameof(this.HeliumRecipeId), this.HeliumRecipeId) + .ExecuteReader(x => new + { + Key = x.GetValue(0), + Value = x.GetValue(1), + }) + .ToDictionary(x => x.Key, x => x.Value); + + + this.WaterRecipes = this.sqlConnection + .CreateCommand($@" + SELECT DISTINCT + hr.Id + , CONCAT(tv.Region, ' NW=', tv.MeterSize, ' BL=', tv.BodyLength, ' DS=', tv.HasPressureSensor) + FROM ht.WaterRecipes AS hr + JOIN ht.WaterRecipes AS _hr + ON hr.MatchRegion = _hr.MatchRegion + AND hr.MatchMeterSize = _hr.MatchMeterSize + JOIN ht.TestVariants AS tv + ON hr.VariantId = tv.Id + WHERE _hr.Id = @{nameof(this.WaterRecipeId)}") + .SetParameter(nameof(this.WaterRecipeId), this.WaterRecipeId) + .ExecuteReader(x => new + { + Key = x.GetValue(0), + Value = x.GetValue(1), + }) + .ToDictionary(x => x.Key, x => x.Value); + } + } + } +} diff --git a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/RecipesAssignmentModel.cs b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/RecipesAssignmentModel.cs new file mode 100644 index 00000000..6fc1edfc --- /dev/null +++ b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/RecipesAssignmentModel.cs @@ -0,0 +1,55 @@ +namespace LaaProductionWeb.Blazor.Components.HeliumTester.Models +{ + using LaaPackages.SqlClient; + + using Microsoft.Extensions.Configuration; + + using System.Collections.Generic; + + public class RecipesAssignmentModel + { + private readonly SqlConnection sqlConnection; + + public RecipesAssignmentModel(IConfiguration configuration) + { + var connectionString = configuration.GetConnectionString("Auftrag"); + this.sqlConnection = SqlConnection.CreateSqlConnection(connectionString); + } + + public IEnumerable LoadLast20PcbRecieps() + { + var latest20Recipes = this.sqlConnection + .CreateCommand(@" + SELECT TOP 20 + Id + , PcbId + , HeliumRecipeId + , WaterRecipeId + , Region + , Dn + , Length + , Pressure + , Plate + , DeadVolume + , MeterType + FROM ht.PcbRecipe + ORDER BY Id DESC") + .ExecuteReader(x => new PcbRecipeEntity + { + Id = x.GetValue(0), + PcbId = x.GetValue(1), + HeliumRecipeId = x.GetValue(2), + WaterRecipeId = x.GetValue(3), + Region = x.GetValue(4), + MeterSize = x.GetValue(5), + BodyLength = x.GetValue(6), + Pressure = x.GetValue(7), + PlateType = x.GetValue(8), + DeadVolume = x.GetValue(9), + MeterType = x.GetValue(10), + }); + + return latest20Recipes; + } + } +} diff --git a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/RecipesCollectionModel.cs b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/RecipesCollectionModel.cs index 758be8e3..b7e4bbd9 100644 --- a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/RecipesCollectionModel.cs +++ b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/RecipesCollectionModel.cs @@ -6,14 +6,12 @@ using System.Collections.Generic; using System.Linq; using System.Reflection; - using System.Timers; public class RecipesCollectionModel { private const string addToGroup = "AddToGroupAsync"; private const string recipes = nameof(recipes); private HubConnection changeHub; - private Timer timer; private readonly HeliumTesterService heliumTesterService; private readonly List heliumRecieps; @@ -35,9 +33,6 @@ this.LoadRecipes(); - this.timer = new System.Timers.Timer(2000); - this.timer.Elapsed += this.Timer_Elapsed; - this.timer.AutoReset = false; this.changeHub = new HubConnectionBuilder() #if DEBUG .WithUrl("https://localhost:44354/changes") @@ -46,17 +41,11 @@ #endif .Build(); - this.changeHub.On(nameof(NotifyChangedAsync), this.NotifyChangedAsync); + this.changeHub.On(nameof(this.NotifyChangedAsync), this.NotifyChangedAsync); this.changeHub.StartAsync().Wait(); this.changeHub.SendAsync(addToGroup, recipes); } - private void Timer_Elapsed(object _, ElapsedEventArgs _1) - { - this.timer.Stop(); - this.changeHub.SendAsync(nameof(this.NotifyChangedAsync), recipes); - } - private void NotifyChangedAsync(string group) { if (group == recipes) @@ -213,21 +202,29 @@ private void OnHeliumRecipeChanged(HeliumRecipeModel recipe) { this.heliumTesterService.UpdateRecipe(HeliumRecipeModel.ToEntity(recipe)); + this.OnRecipeChanged(); + } - if (!this.timer.Enabled) + + private long previousTiks; + const long minTicks = 1000 * 10_000; + private void OnRecipeChanged() + { + var currentTicks = DateTime.UtcNow.Ticks; + var difference = currentTicks - previousTiks; + + if (difference > minTicks) { - this.timer.Start(); + this.changeHub.SendAsync(nameof(this.NotifyChangedAsync), recipes); } + + previousTiks = DateTime.UtcNow.Ticks; } private void OnWaterRecipeChanged(WaterRecipeModel recipe) { this.heliumTesterService.UpdateRecipe(WaterRecipeModel.ToEntity(recipe)); - - //if (!this.timer.Enabled) - //{ - // this.timer.Start(); - //} + this.OnRecipeChanged(); } private void VHeliumRecipePropertyChanged(string property) diff --git a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Navbar.razor b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Navbar.razor index ae968fb3..707f5339 100644 --- a/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Navbar.razor +++ b/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Navbar.razor @@ -4,7 +4,10 @@