diff --git a/.vs/Housing/DesignTimeBuild/.dtbcache.v2 b/.vs/Housing/DesignTimeBuild/.dtbcache.v2 index 31d242b..164f517 100644 Binary files a/.vs/Housing/DesignTimeBuild/.dtbcache.v2 and b/.vs/Housing/DesignTimeBuild/.dtbcache.v2 differ diff --git a/Database.ini b/Database.ini index 70b05f0..8f32133 100644 --- a/Database.ini +++ b/Database.ini @@ -9,4 +9,5 @@ Timeout=5 [Login] Procedure=dbo.CheckOperator +ProcessName=Housing OfflinePreview=true diff --git a/Housing.sln b/Housing.sln index 289e2e6..e143752 100644 --- a/Housing.sln +++ b/Housing.sln @@ -5,6 +5,8 @@ VisualStudioVersion = 18.3.11520.95 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Housing", "Housing.csproj", "{7364A567-F115-4ACE-9207-C6FDEEF0A394}" EndProject +Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "Setup1", "Setup1\Setup1.vdproj", "{F5D91FD6-F519-3AC5-2EF1-6ADD62B256F6}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -27,6 +29,12 @@ Global {7364A567-F115-4ACE-9207-C6FDEEF0A394}.Release|x64.Build.0 = Release|Any CPU {7364A567-F115-4ACE-9207-C6FDEEF0A394}.Release|x86.ActiveCfg = Release|Any CPU {7364A567-F115-4ACE-9207-C6FDEEF0A394}.Release|x86.Build.0 = Release|Any CPU + {F5D91FD6-F519-3AC5-2EF1-6ADD62B256F6}.Debug|Any CPU.ActiveCfg = Debug + {F5D91FD6-F519-3AC5-2EF1-6ADD62B256F6}.Debug|x64.ActiveCfg = Debug + {F5D91FD6-F519-3AC5-2EF1-6ADD62B256F6}.Debug|x86.ActiveCfg = Debug + {F5D91FD6-F519-3AC5-2EF1-6ADD62B256F6}.Release|Any CPU.ActiveCfg = Release + {F5D91FD6-F519-3AC5-2EF1-6ADD62B256F6}.Release|x64.ActiveCfg = Release + {F5D91FD6-F519-3AC5-2EF1-6ADD62B256F6}.Release|x86.ActiveCfg = Release EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Resources/Housing_voltage_current_icon_msi.ico b/Resources/Housing_voltage_current_icon_msi.ico new file mode 100644 index 0000000..9236baf Binary files /dev/null and b/Resources/Housing_voltage_current_icon_msi.ico differ diff --git a/Resources/Housing_voltage_current_icon_msi_noborder.ico b/Resources/Housing_voltage_current_icon_msi_noborder.ico new file mode 100644 index 0000000..df0075f Binary files /dev/null and b/Resources/Housing_voltage_current_icon_msi_noborder.ico differ diff --git a/Services/LoginAccountRepository.cs b/Services/LoginAccountRepository.cs index df28092..774ff0f 100644 --- a/Services/LoginAccountRepository.cs +++ b/Services/LoginAccountRepository.cs @@ -23,6 +23,7 @@ public sealed class LoginAccountRepository command.CommandText = _loginSettings.GetProcedureName(); command.Parameters.Add(new SqlParameter("@Operator", SqlDbType.NVarChar, 10) { Value = loginId }); command.Parameters.Add(new SqlParameter("@Password", SqlDbType.NVarChar, 50) { Value = password }); + command.Parameters.Add(new SqlParameter("@ProcessName", SqlDbType.NVarChar, 30) { Value = _loginSettings.ProcessName }); await connection.OpenAsync(); var result = await command.ExecuteScalarAsync(); diff --git a/Services/LoginSettings.cs b/Services/LoginSettings.cs index a7167a0..06d5d7c 100644 --- a/Services/LoginSettings.cs +++ b/Services/LoginSettings.cs @@ -6,8 +6,10 @@ namespace Housing.Services; public sealed class LoginSettings { private const string DefaultProcedure = "dbo.CheckOperator"; + private const string DefaultProcessName = "Housing"; public string Procedure { get; set; } = DefaultProcedure; + public string ProcessName { get; set; } = DefaultProcessName; public bool OfflinePreview { get; set; } public static LoginSettings Load(string filePath) @@ -21,6 +23,7 @@ public sealed class LoginSettings return new LoginSettings { Procedure = GetString(values, "Procedure", DefaultProcedure), + ProcessName = GetProcessName(values), OfflinePreview = GetBool(values, "OfflinePreview", false) }; } @@ -39,6 +42,17 @@ public sealed class LoginSettings return string.Join(".", parts); } + private static string GetProcessName(Dictionary values) + { + var processName = GetString(values, "ProcessName", DefaultProcessName); + if (!Regex.IsMatch(processName, @"^[A-Za-z0-9_ -]{1,30}$")) + { + throw new InvalidOperationException("Check Database.ini [Login] ProcessName value."); + } + + return processName; + } + private static string GetString(Dictionary values, string key, string defaultValue) { return values.TryGetValue(key, out var value) && !string.IsNullOrWhiteSpace(value) diff --git a/Setup1/Release/SETUP.CAB b/Setup1/Release/SETUP.CAB new file mode 100644 index 0000000..c4b291c Binary files /dev/null and b/Setup1/Release/SETUP.CAB differ diff --git a/Setup1/Release/Setup1.msi b/Setup1/Release/Setup1.msi new file mode 100644 index 0000000..f8cf4c9 Binary files /dev/null and b/Setup1/Release/Setup1.msi differ diff --git a/Setup1/Release/setup.exe b/Setup1/Release/setup.exe new file mode 100644 index 0000000..7fc3538 Binary files /dev/null and b/Setup1/Release/setup.exe differ diff --git a/SetupProject/SetupProject.vdproj b/Setup1/Setup1.vdproj similarity index 57% rename from SetupProject/SetupProject.vdproj rename to Setup1/Setup1.vdproj index bcdcff6..1808c0c 100644 --- a/SetupProject/SetupProject.vdproj +++ b/Setup1/Setup1.vdproj @@ -3,7 +3,7 @@ "VSVersion" = "3:800" "ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" "IsWebType" = "8:FALSE" -"ProjectName" = "8:SetupProject" +"ProjectName" = "8:Setup1" "LanguageId" = "3:1042" "CodePage" = "3:949" "UILanguageId" = "3:1042" @@ -15,23179 +15,21190 @@ { "Entry" { - "MsmKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_002D58F05FFA46FDBDB54483374D69B2" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_00DABFD98C754A759E5ABFB211B5C249" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_C17E953CE554458FA3D973414751D2CC" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_866E8D70379E4EC8B625FFE1F47FD889" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_F5FE62D38D5C4D30A5276F398ACE2208" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_FC262487CAE543089CB587C8166C581E" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_BD2010ACC5854E1096F7AC798834A8D7" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_7776F0B3F25D4F958A79A3B702D72900" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_78876DFFB8F54757A7E7CD5F6937D821" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_EB98E04073DF4D0A81057B1F53EC6632" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_9C7BC3B28FEF0D6A3C7DF01D18722E6C" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_E74C8D77D5E37A69B6984831650003C7" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_89C50D3BE2F9490EBB5D778B96C32C9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_1823E60B0D33421C8F4089342F601B79" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_13C0B21BEF168B0190E20DD315BFA3E0" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_002B35A47F685C337FD43749C4416446" - "OwnerKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0067AD8DE1F64BC0944BD54785646582" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" + "OwnerKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_00B352615C3E46EF86D299B4F122F3C6" + "MsmKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_012BD970C28643B1867A45BABD5EEA80" + "MsmKey" = "8:_025EC274DE654D70829DAFB1D6380996" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_01D43FE872054FCF8A67E90ED85E1CC4" + "MsmKey" = "8:_0295530C182F41228C836A2CB92468B7" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_01E9CC4476A64B8C82EB0BE022CF047E" + "MsmKey" = "8:_02BE941E90844B118EE56900AB646A06" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0205F5D1886848139710911DD96B405B" + "MsmKey" = "8:_02FBD94FF43B4060A25263597E445DBA" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_02848728AD0D442B974E23D647DB20B8" + "MsmKey" = "8:_0327CD370EE34AA4A8DD54EBBF99AC9E" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_04A14015937743D8AA55044D7126131B" + "MsmKey" = "8:_036569AF29D247CE9089AE07843FE315" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0537D874F7DD4D6D9C21CF15B8A83A3B" + "MsmKey" = "8:_0368786955D94604AC394EEB6424743F" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_056D427A7CA44E21BAEF25AE453EEC58" + "MsmKey" = "8:_036B1790890744BAAF946F87847442E0" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_076E4805821E493BB030314D22834904" + "MsmKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0774B1ED0EA5436B9CAE238B6765781B" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_046C7409807BEA0AD759D7284933C95C" + "OwnerKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0780B22F54AB492BB65CAEE79E2A59BA" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_046C7409807BEA0AD759D7284933C95C" + "OwnerKey" = "8:_BDE87E6E1B7A4905A9CEB9E5C03878BE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_07828112E1204A3FA5A2CCAE0A8C82CA" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_046C7409807BEA0AD759D7284933C95C" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_079009E7E5124031B6204AAC7FF67A9A" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_046C7409807BEA0AD759D7284933C95C" + "OwnerKey" = "8:_8146F9A2DB6A4D498ED4A46C80ECC662" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_07D73BC9426549209FE1191ACC01CB3C" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_046C7409807BEA0AD759D7284933C95C" + "OwnerKey" = "8:_56340E8817D0425AA6F13E35C99A2EF1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_07F1036CA88B414C817593A38D6D3A6D" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_046C7409807BEA0AD759D7284933C95C" + "OwnerKey" = "8:_CCB130078DDD4B288794D03E93E5D82B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_087BC2E0C1D042AE961F35C0EE73A5EE" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_046C7409807BEA0AD759D7284933C95C" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_08DBB2137E4945EBB08B07CF58EB154F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08F2AD45918FE7A8AD9BEDB57716F237" - "OwnerKey" = "8:_5CC8DF7128C49B8D92F54987837BE0D6" + "MsmKey" = "8:_046C7409807BEA0AD759D7284933C95C" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_08F2AD45918FE7A8AD9BEDB57716F237" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_046C7409807BEA0AD759D7284933C95C" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_08F2AD45918FE7A8AD9BEDB57716F237" - "OwnerKey" = "8:_84381ED1D01A444DA4B139C706F80BC9" + "MsmKey" = "8:_046C7409807BEA0AD759D7284933C95C" + "OwnerKey" = "8:_46364AC2527B05575C1A7DC2C4A003FE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_08F2AD45918FE7A8AD9BEDB57716F237" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_046C7409807BEA0AD759D7284933C95C" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_08F2AD45918FE7A8AD9BEDB57716F237" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_046C7409807BEA0AD759D7284933C95C" + "OwnerKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_08F2AD45918FE7A8AD9BEDB57716F237" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_046C7409807BEA0AD759D7284933C95C" + "OwnerKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_08F2AD45918FE7A8AD9BEDB57716F237" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_04822DE2C02C421D8C46A31E8DF7C13F" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0912E1C1C1F24DDCA531C6864D1665A8" + "MsmKey" = "8:_050836C30CA44750AF4D9258F3F0AA1C" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0995FB7CDDA448B7A0FF01E8DE947294" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A34BB0D99A9F03D4B6C149150AE4BD7" - "OwnerKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A548EEEC318444B898BF80F22CEBA64" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_7776F0B3F25D4F958A79A3B702D72900" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_F15129EDC4B8463491B8B0C0C7DC2AE4" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_7C38E8CFCE24417FA2A80EC4AC70D9F2" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_81776EE3B0D14F098DEF71346C834416" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_C739986D38D4428AA8E16DD93CA8F2C8" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_BAF05666A62E4063B67A990DBB654458" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_6E350884A4BF44159F89904F4FDF6D50" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_0327CD370EE34AA4A8DD54EBBF99AC9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_19FE79ED86B14135BF9ABBC86A76C182" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_DA87F4E078FD438E9CBA27D5FD4B0543" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_BC55DE2D96EE4BE7B63A10E87BA44D07" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_C0963962D778472C925FDA3E346DFD0F" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_8DA7C6C81DDC4F94A07D257BE53DF8B3" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_BEB7712F13CD4B2CBEA04C676E1B1CF4" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_0ADF9758C9EA4C82A9116965FD5C824A" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_98BDFB20000E4419AA0EA3BD23B4CE59" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_9CB339FE4F29483BBFC63B8DAA58487C" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_B9AEDD2931244B6494949D55104210BC" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_F8B53535DABD4E7D5E5951C921AC682A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_C5B0AE74BFAE45BA893232F4A15B6C27" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_25E58EB806A4EC8427C4EB8A218A5087" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_7DA9550944E242C8B9D670E9FE8EE460" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_71A6F30AD21A45D5BFC23EC8EF3B493E" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_8ACE14AFC519438F9F7CFA1E57E857AA" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_C17E953CE554458FA3D973414751D2CC" + "MsmKey" = "8:_050B0C597A5045379389601790CC6923" + "OwnerKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_B6288F8D68A9416A92DC90E280B06EA2" + "MsmKey" = "8:_0530885BBB7849768DAAAF17900A60F2" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_079009E7E5124031B6204AAC7FF67A9A" + "MsmKey" = "8:_0537A5F0ECDF4E38A7FBDDB5AE1F7670" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_63671CEDA4AA460FA5689EBD8101E817" + "MsmKey" = "8:_053845DF2A80A60A9B8FE3E1BF88DECD" + "OwnerKey" = "8:_E5F605D98C8CBEBB00C09D5EC8C8127B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_EE657F070AC54DDCBA5CD56C53F3FFDC" + "MsmKey" = "8:_053845DF2A80A60A9B8FE3E1BF88DECD" + "OwnerKey" = "8:_74C989C8B18A40A885321F7F8188A83A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_6CAF4782BEEB4150B37C0293B79F0069" + "MsmKey" = "8:_053845DF2A80A60A9B8FE3E1BF88DECD" + "OwnerKey" = "8:_55EFD5C9477B4C7EA11F78E3928B0DC7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_1797384676994F4A8D20EA3733C18E0C" + "MsmKey" = "8:_053845DF2A80A60A9B8FE3E1BF88DECD" + "OwnerKey" = "8:_E8BE71CCC5174E3DA8ADD6585C0D9570" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_21CD9813D578469288F33648FDEC7EB6" + "MsmKey" = "8:_053845DF2A80A60A9B8FE3E1BF88DECD" + "OwnerKey" = "8:_A3B2DD710F4843D781A8372B4443A708" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_75FE1351602A4F8E85CB6F9A14FCFF09" + "MsmKey" = "8:_053845DF2A80A60A9B8FE3E1BF88DECD" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_B1849DE105A443F195D7510B391D0629" + "MsmKey" = "8:_053845DF2A80A60A9B8FE3E1BF88DECD" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_866E8D70379E4EC8B625FFE1F47FD889" + "MsmKey" = "8:_053845DF2A80A60A9B8FE3E1BF88DECD" + "OwnerKey" = "8:_E6E84499A1CB4A6A265D8C05BD0FFA40" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_FF1CA39B5F0F4A5784B3F060A1AEE9FD" + "MsmKey" = "8:_053845DF2A80A60A9B8FE3E1BF88DECD" + "OwnerKey" = "8:_1EF904821BA64F522142ACB4C8E61033" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_D132FA26F719439394D7C487765D7801" + "MsmKey" = "8:_053845DF2A80A60A9B8FE3E1BF88DECD" + "OwnerKey" = "8:_7C840CCB2F2C1EA4816FE487B5E752DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_F62AEFC871D44831804BCD4DF25C23F0" + "MsmKey" = "8:_06032F260A8DEC8FFD196041FDAD9A14" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_0E68B1E82AAD49399267ACAB562EC6F5" + "MsmKey" = "8:_06032F260A8DEC8FFD196041FDAD9A14" + "OwnerKey" = "8:_55F9FC11F41F4C3EBF98220500974FBF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_67B28C0C25A549578A5E328EA971DE36" + "MsmKey" = "8:_06032F260A8DEC8FFD196041FDAD9A14" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_0205F5D1886848139710911DD96B405B" + "MsmKey" = "8:_06032F260A8DEC8FFD196041FDAD9A14" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_06032F260A8DEC8FFD196041FDAD9A14" + "OwnerKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_067B1859737D4828A07C8FF595D279CF" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_51F4D594D73E477E856528EBC42B0F9D" + "MsmKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_99C527251870413C95F2B9A8CF693728" + "MsmKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_FF838842077D44EAA2A6348E18D08E79" + "MsmKey" = "8:_07F8268F05364CB4980757202CE8C1DD" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" + "MsmKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_0B60CEFE230E4633B1FD838B2E9E4D46" + "MsmKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_84D1E150F94A4734AF69639266E603A9" + "MsmKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_55842097A1B740A79E6644F235B0C1AF" + "MsmKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_A8F6731403774C40A8E480A587DFE9C2" + "MsmKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_8446B116F7184398BD545B60AFF3FC46" + "MsmKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "MsmKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_08E6AAF1D9314A638835D668E74CEEFC" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_09D385A292B34CDD839AECA668BD3A08" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_C7B8B31323F147A19100C0D701B4101C" + "MsmKey" = "8:_0A54D85D895B4A41BD3676196CB02DF5" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_F1232BDC1C584F518602C340CC6D9B3B" + "MsmKey" = "8:_0A56519FAC61F9C6C691F628C8318F4C" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_3B72D4DBB2DB48BFAD0801684500E08D" + "MsmKey" = "8:_0A56519FAC61F9C6C691F628C8318F4C" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_BD0C134F8B3D461082A684578110A12C" + "MsmKey" = "8:_0A56519FAC61F9C6C691F628C8318F4C" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_E0DD91B6820043019824432F3CCAC570" + "MsmKey" = "8:_0A679AA7511C440C9E2D3079BA212816" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_E8309CE031A84E3BB0C7AEA48E019E22" + "MsmKey" = "8:_0AAB97EB5A764B0E86E53B0174647FB5" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_ACC9D7826CBE472A8766CAF892A6B8A9" + "MsmKey" = "8:_0AE5E64191244A5AA11686D51B37BD7C" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_4987219C388E4B8ABEDB8326ED8C8D7F" + "MsmKey" = "8:_0B5AD937F1C248DBACFB517AB5E7EE8E" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_2F1F84E9CA7D46DF9F9739205F12F95B" + "MsmKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_02848728AD0D442B974E23D647DB20B8" + "MsmKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_B2011D514CF04C259ABAA54E70395610" + "MsmKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_BFCE0B7A76304ACAA2D84D64CE0EC7AB" + "MsmKey" = "8:_0C35F03470F41E63CFC2314557D58C9F" + "OwnerKey" = "8:_5C8A40195D2FA713BE376F012B30D161" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_04A14015937743D8AA55044D7126131B" + "MsmKey" = "8:_0C35F03470F41E63CFC2314557D58C9F" + "OwnerKey" = "8:_8B7D01F246DC495996E2A46DB76D4F84" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_1947F3829A764DD2A928A23101DE2206" + "MsmKey" = "8:_0C35F03470F41E63CFC2314557D58C9F" + "OwnerKey" = "8:_4D4C37D93E3B414C8FE99DBB8E48FBB6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_01D43FE872054FCF8A67E90ED85E1CC4" + "MsmKey" = "8:_0C35F03470F41E63CFC2314557D58C9F" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_DECDF56F984E473E92323CACE22A1C1C" + "MsmKey" = "8:_0C35F03470F41E63CFC2314557D58C9F" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_638ED98CAD46C3F510314D5BA18F5FFA" + "MsmKey" = "8:_0C35F03470F41E63CFC2314557D58C9F" + "OwnerKey" = "8:_4EB2192CC00FB0EB1C5133471260033C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_0C35F03470F41E63CFC2314557D58C9F" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_8D916F703BFB47DEB61E0FF69D9F6189" + "MsmKey" = "8:_0CD5D9C4AFDB414E9294643364414C0D" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "MsmKey" = "8:_0CE6E39840DD4AFA8D75CF4E5FAE6F46" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_2E3DA24B734E4A11A8D0E0753635C7AE" + "MsmKey" = "8:_0CE6E39840DD4AFA8D75CF4E5FAE6F46" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_A28626C07DA34FBCBD3FE29D07AA0E56" + "MsmKey" = "8:_0CE6E39840DD4AFA8D75CF4E5FAE6F46" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_1F07CC99CC9947599D83707F1D15766A" + "MsmKey" = "8:_0D1200924CA21F19FF53C62B7B8354FF" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_9F396770E1B644CA889B7ED6A58E40DA" + "MsmKey" = "8:_0D1200924CA21F19FF53C62B7B8354FF" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_5B3E026DD33A40C1A7EDC39A74BF1FA1" + "MsmKey" = "8:_0D1200924CA21F19FF53C62B7B8354FF" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_0D1200924CA21F19FF53C62B7B8354FF" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_0D1200924CA21F19FF53C62B7B8354FF" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_AF2FD3529ACE48B6A5497A6197A020AA" + "MsmKey" = "8:_0D7CAA399994014550D649BDB391BF30" + "OwnerKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_14D46FEB93FA4D299E6056B1E348312F" + "MsmKey" = "8:_0D7CAA399994014550D649BDB391BF30" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_9C7BC3B28FEF0D6A3C7DF01D18722E6C" + "MsmKey" = "8:_0D7CAA399994014550D649BDB391BF30" + "OwnerKey" = "8:_B873BE40B7AA4D4FACE3565666F45F51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_0D7CAA399994014550D649BDB391BF30" + "OwnerKey" = "8:_F5FE62D38D5C4D30A5276F398ACE2208" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_0D7CAA399994014550D649BDB391BF30" + "OwnerKey" = "8:_7776F0B3F25D4F958A79A3B702D72900" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_6979A6B680CB47C7A69BE7860AF298F6" + "MsmKey" = "8:_0D7CAA399994014550D649BDB391BF30" + "OwnerKey" = "8:_6E83BDD242CD403E88C6174D59C0F7D4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_BE5D2C19D8FE4FA1BDF8F4B535872332" + "MsmKey" = "8:_0D7CAA399994014550D649BDB391BF30" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_D27FF6909BB24D13BCEE5E0AB0B89913" + "MsmKey" = "8:_0D7CAA399994014550D649BDB391BF30" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_E74C8D77D5E37A69B6984831650003C7" + "MsmKey" = "8:_0D7CAA399994014550D649BDB391BF30" + "OwnerKey" = "8:_F2BF868F37FD4EBB9EEE93828F6B8B80" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_0D7CAA399994014550D649BDB391BF30" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_D3B9100D444743C5A5B2BEADE3C79799" + "MsmKey" = "8:_0D7CAA399994014550D649BDB391BF30" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_1393BDC59A6B4C81B84D5C2C618156EF" + "MsmKey" = "8:_0D7CAA399994014550D649BDB391BF30" + "OwnerKey" = "8:_8765771DDE4A840EC489FFEEE5E7780A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_C9119A99605F402ABE71C62A7381323B" + "MsmKey" = "8:_0D7CAA399994014550D649BDB391BF30" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_3B678EA0E9FA4D20B7D90D75DCAF300C" + "MsmKey" = "8:_0D7CAA399994014550D649BDB391BF30" + "OwnerKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_605BE8A0427948D6B90C492E1BD29A76" + "MsmKey" = "8:_0D7CAA399994014550D649BDB391BF30" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_857F5B9F107D4EE0A084B7EFFF52D005" + "MsmKey" = "8:_0D7CAA399994014550D649BDB391BF30" + "OwnerKey" = "8:_1227F5127E12287474AC428519CF1F5A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_AD0702E6A985495B973E198A50FD62EB" + "MsmKey" = "8:_0D7CAA399994014550D649BDB391BF30" + "OwnerKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_73A58D0939B541DFB73116EDFD2DF065" + "MsmKey" = "8:_0DECFF529DF243F5A0FFFDEDB84FD568" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_F6BAAF5364A4477F8AB5AC0EC2E90C05" + "MsmKey" = "8:_0E1E7B42F35E4933874BC1468FC5DF8D" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_0E632DF9EB5C420ABC24BDEB71F6B1D2" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_80443D2C922030B6CD68CCA745F0E5B1" + "MsmKey" = "8:_0F1F0D6286EEEB4EC6814F48A7D049A6" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_0F1F0D6286EEEB4EC6814F48A7D049A6" + "OwnerKey" = "8:_FEEDC4F58B6148F79B34BCD14DEF1B1B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_0F1F0D6286EEEB4EC6814F48A7D049A6" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_7B84FC380764415ABB407E76018A6C1F" + "MsmKey" = "8:_0F1F0D6286EEEB4EC6814F48A7D049A6" + "OwnerKey" = "8:_3F7191903485AE336DDBE8F265888B67" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_BD3B5B85C4E445248560F41BD0DE8BE7" + "MsmKey" = "8:_1018C7A26FA94652A208F5653921720D" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_5C7248F3FB9C4BC08BC60F647CF92413" + "MsmKey" = "8:_1049DED220694EA7A18EE141D7B650B2" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_CDC750ABB7DA4D5BB101583406E8DB9E" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_243FEEBC941A41DD9C5F736248AFD819" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_0AD2B80BD2AC492DB97EE4C5ED1BF5F8" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_B02AC42471634FDDB8675ACE5C4A140D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_CAB5C2A388B34D1F874E72AC38354BFA" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_B873BE40B7AA4D4FACE3565666F45F51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_53C949C71D0F422B8978AD416438B086" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_B493379D394F49F2A257ACE3C4BEF216" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_7776F0B3F25D4F958A79A3B702D72900" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_87840206D46747A097E4ED2B15D78CFA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_0912E1C1C1F24DDCA531C6864D1665A8" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_1D5335D7AACA430A8763AC84DDF08528" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_D27991107EA14C1C8B4A246C7658161E" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_E0A90872657427483F053288CC41F7BF" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_818C90D1A56563131B63B1CA3CA576F3" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_DF7BE6B17DB31AF84FE5CB648144B247" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_385E4C4F5EED8818E2DF6396C14184B2" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_F9D45EB45753FAD80DFD1C6F7ADF3844" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_60307A9582FE2D7618125043293A02AB" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_0D1200924CA21F19FF53C62B7B8354FF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_80FAF08BE91DC1EC96DC613154D44F7E" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_D4EC43B9F9144598017136DE430174D9" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_9AA9B1640404D837BA8E590A2A7B3FDE" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_A5281AE19E3C0466830CC797A9C17602" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_C11E19B0EB4B8A1E84235A23B46ABD98" + "MsmKey" = "8:_1227F5127E12287474AC428519CF1F5A" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_5A3B9691BBA0905D20072B75D246E43D" + "MsmKey" = "8:_12A45DA723FC486CA7EE607E2F7762F2" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_F7DCFBBBD2303C93730C794C86A43580" + "MsmKey" = "8:_1359C7CA18A745EA8445F44058628957" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_144406C0B2B04AACA803CDBE2B1E97AB" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" + "MsmKey" = "8:_147B36A46E7344C9AE8E2C93AB680825" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_EA48A68BB9E85EB5D21359CD934CDE34" + "MsmKey" = "8:_153A8EA805CA4828B967B48FF6D4BC37" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_A0CAEAFA8AF476AE9779326B71CAD208" + "MsmKey" = "8:_1621CD8AC45709FF928DE3ED82B24D00" + "OwnerKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_4A127626130436A8485B10D9D040C3F8" + "MsmKey" = "8:_16758E102315420CAF07169A47EF16A8" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_168090D595D80D0A86442948560A106E" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_BA6689085C8CEBFE45F4F582C7CA6BE7" + "MsmKey" = "8:_168090D595D80D0A86442948560A106E" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" + "MsmKey" = "8:_168090D595D80D0A86442948560A106E" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_16B991C2E44549CE8827F82098FA9753" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" + "MsmKey" = "8:_16DAD5A97AA149429273133023C05F9A" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_002B35A47F685C337FD43749C4416446" + "MsmKey" = "8:_16EB40669FCA68C2E34800ABC4D81F41" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_D142F4C5A6246588440689DF4036E8F2" + "MsmKey" = "8:_16EB40669FCA68C2E34800ABC4D81F41" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_08F2AD45918FE7A8AD9BEDB57716F237" + "MsmKey" = "8:_16EB40669FCA68C2E34800ABC4D81F41" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_13B3F1052A56A2AA76DB87CEE3FDEE7A" + "MsmKey" = "8:_16EB40669FCA68C2E34800ABC4D81F41" + "OwnerKey" = "8:_1359C7CA18A745EA8445F44058628957" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_B16E542C910B2E0537C34147E3F2A772" + "MsmKey" = "8:_16EB40669FCA68C2E34800ABC4D81F41" + "OwnerKey" = "8:_EC057A65CB2191A3A75D32D39E2C9281" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_BB9997D921573F9889C5EB78392A5460" + "MsmKey" = "8:_16EB40669FCA68C2E34800ABC4D81F41" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_AC9B28E0D99E4F1F515BA0BBE9459CE5" + "MsmKey" = "8:_17E7BB17CF444C9782DC6CDD352FBB0D" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_3A63E9B6336859FB898A1207E36A64D2" + "MsmKey" = "8:_183A4519C9E8986D056A0C2787481B51" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_183A4519C9E8986D056A0C2787481B51" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_183A4519C9E8986D056A0C2787481B51" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" + "MsmKey" = "8:_184D1FF76E0A4B30B78466ACCBBB9E67" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" + "MsmKey" = "8:_1875465143744924A9CD3694FA7C7300" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_5DECA8430E15A27DB07E2F19865BE42D" + "MsmKey" = "8:_18F64B11FA2B3AF2FD7BC1EBF31D85A4" + "OwnerKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_18F64B11FA2B3AF2FD7BC1EBF31D85A4" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" + "MsmKey" = "8:_18F64B11FA2B3AF2FD7BC1EBF31D85A4" + "OwnerKey" = "8:_7776F0B3F25D4F958A79A3B702D72900" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_88A2108E2171BF0E64073F268672989C" + "MsmKey" = "8:_18F64B11FA2B3AF2FD7BC1EBF31D85A4" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" + "MsmKey" = "8:_18F64B11FA2B3AF2FD7BC1EBF31D85A4" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" + "MsmKey" = "8:_18F64B11FA2B3AF2FD7BC1EBF31D85A4" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" + "MsmKey" = "8:_18F64B11FA2B3AF2FD7BC1EBF31D85A4" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" + "MsmKey" = "8:_1900E767C0AF4A0685E72AD00CFE245B" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_8BB9413DD232277D8EC384477B23E618" + "MsmKey" = "8:_190A2E93252ABCDEC68945E28E95031C" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_B28C76E809A91245E9FA657909D423F4" + "MsmKey" = "8:_190A2E93252ABCDEC68945E28E95031C" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_45E53FB27049D042E5DED373E26F270F" + "MsmKey" = "8:_190A2E93252ABCDEC68945E28E95031C" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_050B0C597A5045379389601790CC6923" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_4E05FFBA65CF4791A30C1FA9F5B7C8C5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_5F082BC1113FF660F20E98CE2AC3095D" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_1359C7CA18A745EA8445F44058628957" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_86A788B950814C0859DE3243B664552F" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_FE8069F25C7542899AA4D3DA4F912B1C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_95E95D512F7447DAA4C6FD50CE087AEA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_3EF2B71DFA0287A135EC6D2EED20D989" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_681A6EBA6A68461C95E7263C5490328E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_7FF631853BCE4C7080E8E8CB1DBCDCC1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_B4DC9680AAC199071BAEC00BA7B52A9D" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_EC057A65CB2191A3A75D32D39E2C9281" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" - "OwnerKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_C8225AB4F128DD5C462799E34B2089A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0A912963B5544791B5D25A6A7592B988" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0AD2B80BD2AC492DB97EE4C5ED1BF5F8" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0AD512AB3459ED6F4F847D545A537BB3" - "OwnerKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_AD652B25F4FB47219D9D111AD130AC03" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0ADF9758C9EA4C82A9116965FD5C824A" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_98BDFB20000E4419AA0EA3BD23B4CE59" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0AFEDDD7596547F9B9826E7827042C1F" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_784ACDE198073C9AECF536BBDD06E2CA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_C3EDD553A32A0F38069B9AC4058185CA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" - "OwnerKey" = "8:_271011AD979B4CBBBC9E510C783444B0" + "MsmKey" = "8:_195464F81556BDF6BDAF089A424D04BD" + "OwnerKey" = "8:_C2C7C844CF816EEE05C94D4477A24455" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" - "OwnerKey" = "8:_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "MsmKey" = "8:_197BB23CB89E43A5B6ADC5825C6EA03C" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_19ECA032F766EDFBA4314CBFD71873F8" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_19ECA032F766EDFBA4314CBFD71873F8" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_19ECA032F766EDFBA4314CBFD71873F8" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_1A16B3277BC0470DB6FA4A7178FAE161" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_1A3116329853417B930370F0E02BADBA" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_1A39A6ED544247C2B9292099BA8731D1" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" - "OwnerKey" = "8:_BBD6FAD81E26ECE30F40C28556D906CE" + "MsmKey" = "8:_1C187CF17FC84DA69B8F24DD1ABF3117" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_1C737FA2F1C14AECAA30697D490522CC" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" - "OwnerKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" + "MsmKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" + "OwnerKey" = "8:_89C50D3BE2F9490EBB5D778B96C32C9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0B2BAA3A5E604087AF901AAAD0289AD7" + "MsmKey" = "8:_1CB01662D311443BA86B4C7D1C5F91BC" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0B60CEFE230E4633B1FD838B2E9E4D46" + "MsmKey" = "8:_1CC42556B24A44EFA52D3C6ED39D4136" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0BA12C6A7503EDB0C827A7D2373B43FE" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0BA12C6A7503EDB0C827A7D2373B43FE" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0BA12C6A7503EDB0C827A7D2373B43FE" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0BCB59AFC8CE47079630A8051FEE4259" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_C630F7E8EA4840BAB1B2559D71483F8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0C3E345C6D6041778606E682C8EF1BE1" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0CA892179765431AACCDA9CC9A5A718F" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0CC47E8DADE9332F8B0F53C5B4AE1952" - "OwnerKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0CD3F544A0F1D9D27CC36C5B7338C984" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0CD3F544A0F1D9D27CC36C5B7338C984" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_E6D8C4B69849495883A1497295063547" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0CD3F544A0F1D9D27CC36C5B7338C984" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_736EDDDBC3584E7A83D01BE2C66DBF5B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_82A07788C4F0390092FA707DCB5CA209" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_9C4BE12B0CD74B7CBBD18F04CB7C4D82" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_8DA7C6C81DDC4F94A07D257BE53DF8B3" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_B6288F8D68A9416A92DC90E280B06EA2" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_E9B8002F9879403F994F719F640BFF20" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_FC1B3053EE004D9CA842FE7ACAB59109" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_E129F749CD8340D59FB77411E5B5DD52" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_D147A209D52B47799F51651D4069C15E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_DECDF56F984E473E92323CACE22A1C1C" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_D61738826E13F256E5D5365099EA0D68" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_A9035D942941788E21A775971D3379AD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_5BFFFF7FD7100CE916F389F8186B56E4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_A73B77AB52A14A06924029907A4E19B1" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_73A58D0939B541DFB73116EDFD2DF065" + "MsmKey" = "8:_1DB0820845EDE427EC72C63B74AB812A" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_1DB0820845EDE427EC72C63B74AB812A" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_1DB0820845EDE427EC72C63B74AB812A" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_1DFC69D3F1F54EB9BD372F5DEFABCEA6" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_655FCCA1E86A4494A1245290A41E97B8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_55F9FC11F41F4C3EBF98220500974FBF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_CD8824E528414EBDA5DCE3BA0A9528F8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_779089C4535D1F4BE27BCFA5629CC6B4" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_B28C76E809A91245E9FA657909D423F4" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D402C75C4105E49FA08F1F21522121B" - "OwnerKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D7A68671100C8E976D700977069A1AD" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D7A68671100C8E976D700977069A1AD" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0D7A68671100C8E976D700977069A1AD" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0E4CE33347A3FAB993941A4812B2F6B6" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0E4CE33347A3FAB993941A4812B2F6B6" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0E4CE33347A3FAB993941A4812B2F6B6" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_1EF904821BA64F522142ACB4C8E61033" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0E68B1E82AAD49399267ACAB562EC6F5" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_1EF904821BA64F522142ACB4C8E61033" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0F6D284DDECB11F82AD5814134FEAE6D" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_1F05C5740019436CA4072317066FB1AC" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0F6D284DDECB11F82AD5814134FEAE6D" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_1F110DF3B1D440349F33E0F881C9A394" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0F6D284DDECB11F82AD5814134FEAE6D" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_2024DBA65B2E695BEA2FE6EBD3454FF6" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0F6D284DDECB11F82AD5814134FEAE6D" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_2024DBA65B2E695BEA2FE6EBD3454FF6" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0F6D284DDECB11F82AD5814134FEAE6D" - "OwnerKey" = "8:_605BE8A0427948D6B90C492E1BD29A76" + "MsmKey" = "8:_2024DBA65B2E695BEA2FE6EBD3454FF6" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0F6D284DDECB11F82AD5814134FEAE6D" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_2024DBA65B2E695BEA2FE6EBD3454FF6" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0F6D284DDECB11F82AD5814134FEAE6D" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_2024DBA65B2E695BEA2FE6EBD3454FF6" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0F6D284DDECB11F82AD5814134FEAE6D" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_2035F967DC674709A414035CBF8E36FD" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0F6D284DDECB11F82AD5814134FEAE6D" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_208BDA42059B42968ED5851D23443017" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0F6D284DDECB11F82AD5814134FEAE6D" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_209CC981198B092EEADFA404D4E99DE1" + "OwnerKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_0FDF33C2BE754393864E64027DB22770" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_209CC981198B092EEADFA404D4E99DE1" + "OwnerKey" = "8:_48FEC7295A1F49AFA9658B28040D82D0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_10A8E89B79204217B9C91D25AB893E32" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_209CC981198B092EEADFA404D4E99DE1" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_116BD942CEE84471AD2C9816EAC500BA" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_209CC981198B092EEADFA404D4E99DE1" + "OwnerKey" = "8:_F5FE62D38D5C4D30A5276F398ACE2208" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_11EF1D71AA6D46D794828A3A741F7AEE" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_209CC981198B092EEADFA404D4E99DE1" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_12335B8BAE0A4F779B4F30C11E447EB8" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_209CC981198B092EEADFA404D4E99DE1" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_124944AD3480460F9F08D25BBEBBFE88" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_209CC981198B092EEADFA404D4E99DE1" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" - "OwnerKey" = "8:_B8AEAF1670241ADBAE04834B32D7CE4C" + "MsmKey" = "8:_209CC981198B092EEADFA404D4E99DE1" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" - "OwnerKey" = "8:_FF2E89ADEACA488693DC1A83E1DDA15D" + "MsmKey" = "8:_209CC981198B092EEADFA404D4E99DE1" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" - "OwnerKey" = "8:_6B8C88C0644E4A15BB71AD09F48EF762" + "MsmKey" = "8:_209CC981198B092EEADFA404D4E99DE1" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" - "OwnerKey" = "8:_0FDF33C2BE754393864E64027DB22770" + "MsmKey" = "8:_209CC981198B092EEADFA404D4E99DE1" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_12DBB88C07D24A3EA8D14083F0B10F43" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_209CC981198B092EEADFA404D4E99DE1" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_209CC981198B092EEADFA404D4E99DE1" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_209CC981198B092EEADFA404D4E99DE1" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_9CB339FE4F29483BBFC63B8DAA58487C" + "MsmKey" = "8:_209CC981198B092EEADFA404D4E99DE1" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_C5B0AE74BFAE45BA893232F4A15B6C27" + "MsmKey" = "8:_209CC981198B092EEADFA404D4E99DE1" + "OwnerKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_7DA9550944E242C8B9D670E9FE8EE460" + "MsmKey" = "8:_20D842E976454292AAD59C3710685729" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_B6288F8D68A9416A92DC90E280B06EA2" + "MsmKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_75FE1351602A4F8E85CB6F9A14FCFF09" + "MsmKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_0E68B1E82AAD49399267ACAB562EC6F5" + "MsmKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" + "OwnerKey" = "8:_B02AC42471634FDDB8675ACE5C4A140D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" + "OwnerKey" = "8:_EB98E04073DF4D0A81057B1F53EC6632" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_51F4D594D73E477E856528EBC42B0F9D" + "MsmKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_FF838842077D44EAA2A6348E18D08E79" + "MsmKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_84D1E150F94A4734AF69639266E603A9" + "MsmKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_55842097A1B740A79E6644F235B0C1AF" + "MsmKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_A8F6731403774C40A8E480A587DFE9C2" + "MsmKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_3B72D4DBB2DB48BFAD0801684500E08D" + "MsmKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" + "OwnerKey" = "8:_F9D45EB45753FAD80DFD1C6F7ADF3844" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_ACC9D7826CBE472A8766CAF892A6B8A9" + "MsmKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" + "OwnerKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "MsmKey" = "8:_2136DF79E3D947F98359005D8D8AB1FA" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_2E3DA24B734E4A11A8D0E0753635C7AE" + "MsmKey" = "8:_21E68C1A94E92853B17A098E208A63D5" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_1F07CC99CC9947599D83707F1D15766A" + "MsmKey" = "8:_21E68C1A94E92853B17A098E208A63D5" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_21E68C1A94E92853B17A098E208A63D5" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_2297D78D3E90455E8F53C4BE8C5E0F94" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_234A61A2BB88F06DD30B16DE9F66E565" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_234A61A2BB88F06DD30B16DE9F66E565" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_234A61A2BB88F06DD30B16DE9F66E565" + "OwnerKey" = "8:_975852014F5B4FACBBDF5C881DA76681" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_234A61A2BB88F06DD30B16DE9F66E565" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_234A61A2BB88F06DD30B16DE9F66E565" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_E0A90872657427483F053288CC41F7BF" + "MsmKey" = "8:_234A61A2BB88F06DD30B16DE9F66E565" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_385E4C4F5EED8818E2DF6396C14184B2" + "MsmKey" = "8:_234A61A2BB88F06DD30B16DE9F66E565" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_234A61A2BB88F06DD30B16DE9F66E565" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_BA6689085C8CEBFE45F4F582C7CA6BE7" + "MsmKey" = "8:_234A61A2BB88F06DD30B16DE9F66E565" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" + "MsmKey" = "8:_234A61A2BB88F06DD30B16DE9F66E565" + "OwnerKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_248BBDA68E464FD0BF31E05062AB7B23" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_13B3F1052A56A2AA76DB87CEE3FDEE7A" + "MsmKey" = "8:_253BC8A12B714CCCBBAD8BEA9AB232AF" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" + "MsmKey" = "8:_25E58EB806A4EC8427C4EB8A218A5087" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" + "MsmKey" = "8:_25E58EB806A4EC8427C4EB8A218A5087" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" + "MsmKey" = "8:_25E58EB806A4EC8427C4EB8A218A5087" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_25FF3BA4F04D44A29B55492225D57B91" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_28ED007DCB2C4A0F92918CFFD14EFB47" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" + "MsmKey" = "8:_29F7A2045FA2410D8F022FD6814F9F0F" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" + "MsmKey" = "8:_2A481EE8B108B1BA0DA9D0F7D4DFF3D3" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" - "OwnerKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" + "MsmKey" = "8:_2A481EE8B108B1BA0DA9D0F7D4DFF3D3" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_130E3E8850F94FCB8A6667564F05B7DC" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_2A481EE8B108B1BA0DA9D0F7D4DFF3D3" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1393BDC59A6B4C81B84D5C2C618156EF" + "MsmKey" = "8:_2A984AB742E34D9CB2BB84942F51F4A2" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13B3F1052A56A2AA76DB87CEE3FDEE7A" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_13B3F1052A56A2AA76DB87CEE3FDEE7A" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_2B914DD2B9EB4A0383F6BD3034EA3F53" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13B3F1052A56A2AA76DB87CEE3FDEE7A" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_2B9CF255BD67578217BF36A742BD97A5" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13B3F1052A56A2AA76DB87CEE3FDEE7A" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_2B9CF255BD67578217BF36A742BD97A5" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13B3F1052A56A2AA76DB87CEE3FDEE7A" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_2B9CF255BD67578217BF36A742BD97A5" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13C0B21BEF168B0190E20DD315BFA3E0" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_2BA3714CA8E54F78954E9579293C3CAB" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13C0B21BEF168B0190E20DD315BFA3E0" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_2C86D93FF6F2A8D550A353E689A42D66" + "OwnerKey" = "8:_6CF80A72B1AA427F859E25B422E8FB82" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13C0B21BEF168B0190E20DD315BFA3E0" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_2C86D93FF6F2A8D550A353E689A42D66" + "OwnerKey" = "8:_FB2362D3B56C02E660BBD18DFDAD9323" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13C0B21BEF168B0190E20DD315BFA3E0" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_2D1C062B85DD4AEC91C54C1F31BC31A2" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13C0B21BEF168B0190E20DD315BFA3E0" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_2D703D824988419B9F04D1B09DE37026" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13C0B21BEF168B0190E20DD315BFA3E0" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_2DC66B6B0ADA43EA9D508F2B6E62C1E8" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_13C0B21BEF168B0190E20DD315BFA3E0" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_2E19CF28D9950189E4EFF269041F0FD8" + "OwnerKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_14727598BC6740079DA62CAB552BE8A5" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_2E19CF28D9950189E4EFF269041F0FD8" + "OwnerKey" = "8:_6AD6EEB4586A4ACF9B3E9F11A6F644DC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_14D46FEB93FA4D299E6056B1E348312F" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_2E19CF28D9950189E4EFF269041F0FD8" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_2E19CF28D9950189E4EFF269041F0FD8" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_2E19CF28D9950189E4EFF269041F0FD8" + "OwnerKey" = "8:_CD8824E528414EBDA5DCE3BA0A9528F8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" - "OwnerKey" = "8:_7A5B16731EEC4355B576D7DDFCA358BF" + "MsmKey" = "8:_2E19CF28D9950189E4EFF269041F0FD8" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_2E19CF28D9950189E4EFF269041F0FD8" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_2E19CF28D9950189E4EFF269041F0FD8" + "OwnerKey" = "8:_504E92556FF74DC6857BCBBB97FB7EB8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_2E19CF28D9950189E4EFF269041F0FD8" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_2E19CF28D9950189E4EFF269041F0FD8" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_2E19CF28D9950189E4EFF269041F0FD8" + "OwnerKey" = "8:_887286F4C29C1F45FAF43D3E3165DD9B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" - "OwnerKey" = "8:_5B33C61F5CC73F6B67F7641FDCA19E32" + "MsmKey" = "8:_2E19CF28D9950189E4EFF269041F0FD8" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1528DC0C365C4EE8AA4C2CEE02CE2D85" + "MsmKey" = "8:_2E3D5B68BF234E6BA1C15D82AE4873E0" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_17760E146DF74573A3BDC64BB120A84A" + "MsmKey" = "8:_2E5120DFA2DA41889A6CC3FDA938E4E9" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1797384676994F4A8D20EA3733C18E0C" + "MsmKey" = "8:_2E719C1428664833BCA5D9B8CBFA6C93" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_17F783A4246241B8930B7A23B4CAF7F7" + "MsmKey" = "8:_2FAAED2D751A4742B837AE38C9F6885A" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1823E60B0D33421C8F4089342F601B79" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_3101F9AFF87F4586C5C12A29FB502D79" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1823E60B0D33421C8F4089342F601B79" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_3101F9AFF87F4586C5C12A29FB502D79" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1823E60B0D33421C8F4089342F601B79" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_3101F9AFF87F4586C5C12A29FB502D79" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_18C36F57CA584D0B810FEB6B7D49F132" + "MsmKey" = "8:_3110749E23564FDF8A063A1C160DDA82" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1947F3829A764DD2A928A23101DE2206" + "MsmKey" = "8:_3135B425C03D41748F6CFB3D756EB9E9" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_19DAFC5E96736BDA49E1EBC7F6F773F0" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_31365292EB0A4C64A977C3FF80BE8D9C" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_19DAFC5E96736BDA49E1EBC7F6F773F0" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_31FC7F597776489A8F43E32E24F93BE5" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_19DAFC5E96736BDA49E1EBC7F6F773F0" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_32EF223E0EFB40A88EBE556C8EAA4AF3" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_19DAFC5E96736BDA49E1EBC7F6F773F0" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_32F0360562E0F4E46ECF81F6FFE26EC6" + "OwnerKey" = "8:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_19DAFC5E96736BDA49E1EBC7F6F773F0" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_32F0360562E0F4E46ECF81F6FFE26EC6" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_19DAFC5E96736BDA49E1EBC7F6F773F0" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_32F0360562E0F4E46ECF81F6FFE26EC6" + "OwnerKey" = "8:_32EF223E0EFB40A88EBE556C8EAA4AF3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_19DAFC5E96736BDA49E1EBC7F6F773F0" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_32F0360562E0F4E46ECF81F6FFE26EC6" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_19FE79ED86B14135BF9ABBC86A76C182" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_32F0360562E0F4E46ECF81F6FFE26EC6" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1A2539992C2B3C1C53911F2EA24845ED" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_32F0360562E0F4E46ECF81F6FFE26EC6" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1A2539992C2B3C1C53911F2EA24845ED" - "OwnerKey" = "8:_F990AF8668E94BD9BE4862F58E0BD0B7" + "MsmKey" = "8:_32F0360562E0F4E46ECF81F6FFE26EC6" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1A2539992C2B3C1C53911F2EA24845ED" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_342A6CE3EF5E8C5170AA6C400613FF5B" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1A2539992C2B3C1C53911F2EA24845ED" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_342A6CE3EF5E8C5170AA6C400613FF5B" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1A2539992C2B3C1C53911F2EA24845ED" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_342A6CE3EF5E8C5170AA6C400613FF5B" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1A2539992C2B3C1C53911F2EA24845ED" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_342A6CE3EF5E8C5170AA6C400613FF5B" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1A2539992C2B3C1C53911F2EA24845ED" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_342A6CE3EF5E8C5170AA6C400613FF5B" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1A2539992C2B3C1C53911F2EA24845ED" - "OwnerKey" = "8:_5B9E3DEC263DB384D2E4044422BBD36F" + "MsmKey" = "8:_344F4EFB09664C2786E9B62FDFEFD8A9" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1A2539992C2B3C1C53911F2EA24845ED" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_35037DF8DE6149C18293212108B27384" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1A985B403E0ADE87D5D97462E7FA2488" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_35F2A45F8E194D1CA2ED585BD8A95B75" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1A985B403E0ADE87D5D97462E7FA2488" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1A985B403E0ADE87D5D97462E7FA2488" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1D1ED3F0D711477E9FF4DFF590CEAE8B" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1D25D636F3054CFFBDE6D6B22405E7BD" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_C630F7E8EA4840BAB1B2559D71483F8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1D5335D7AACA430A8763AC84DDF08528" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_A31F3F958D4547698677DD3F80B8FB27" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1DA49025F60540E381128AB6C98B1260" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1E1DFC70D9B141D28F527E5A966F2551" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1E240AE58646D3B961307C6B533D156C" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1E240AE58646D3B961307C6B533D156C" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_8146F9A2DB6A4D498ED4A46C80ECC662" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1E240AE58646D3B961307C6B533D156C" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_7BEAA3F3CE3A41E1B5E7AA81B64066D9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1E31CB5CB98AC6D1CA22D47553042578" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_E24C55B98E6242C3B31344952E3ED6B6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1E31CB5CB98AC6D1CA22D47553042578" - "OwnerKey" = "8:_866E8D70379E4EC8B625FFE1F47FD889" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_32EF223E0EFB40A88EBE556C8EAA4AF3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1E31CB5CB98AC6D1CA22D47553042578" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1E31CB5CB98AC6D1CA22D47553042578" - "OwnerKey" = "8:_9C7BC3B28FEF0D6A3C7DF01D18722E6C" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_EB98E04073DF4D0A81057B1F53EC6632" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1E31CB5CB98AC6D1CA22D47553042578" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1E31CB5CB98AC6D1CA22D47553042578" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1E31CB5CB98AC6D1CA22D47553042578" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_7F44F5DCF7044398A8BC0D24E76B35B4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1E31CB5CB98AC6D1CA22D47553042578" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_975852014F5B4FACBBDF5C881DA76681" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1E50F1FAE8654AB598E1D23C58C9236F" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_BAF05666A62E4063B67A990DBB654458" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_DA87F4E078FD438E9CBA27D5FD4B0543" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1E65E959ABB1497194CF38F4798A8F91" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1EFB3A511A9240E98D2CBCEB471B206D" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1F07CC99CC9947599D83707F1D15766A" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_197BB23CB89E43A5B6ADC5825C6EA03C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_1F46440310454818831FECAED692F4FF" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_6CAF4782BEEB4150B37C0293B79F0069" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_F62AEFC871D44831804BCD4DF25C23F0" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_25E58EB806A4EC8427C4EB8A218A5087" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_0205F5D1886848139710911DD96B405B" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_9CA2658ACD8741F43E77E56D9F53DCD5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_51F4D594D73E477E856528EBC42B0F9D" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_32F0360562E0F4E46ECF81F6FFE26EC6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_3B72D4DBB2DB48BFAD0801684500E08D" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_1947F3829A764DD2A928A23101DE2206" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_01D43FE872054FCF8A67E90ED85E1CC4" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_8D916F703BFB47DEB61E0FF69D9F6189" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_5B3E026DD33A40C1A7EDC39A74BF1FA1" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_80443D2C922030B6CD68CCA745F0E5B1" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_368297E8E6732BD28622CB59EE965020" + "OwnerKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_37F9CA373D6B44C58DD3134FB9A6FD98" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_380884DD2753A301C82737899E085AE4" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_E0A90872657427483F053288CC41F7BF" + "MsmKey" = "8:_380884DD2753A301C82737899E085AE4" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_380884DD2753A301C82737899E085AE4" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_38F6E660F60B4F72B6375EF6F3FD0E9A" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_209CC981198B092EEADFA404D4E99DE1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_F46463168E28445994747470940851B5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_9AF4DF764E3D402FA7B373767289455C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_58C396CAD94644E493315C2801EC4AF5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_BB9997D921573F9889C5EB78392A5460" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_C630F7E8EA4840BAB1B2559D71483F8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_3A63E9B6336859FB898A1207E36A64D2" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_D8F5958646964348B09B2F5870ED1BE0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_2DC66B6B0ADA43EA9D508F2B6E62C1E8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_1359C7CA18A745EA8445F44058628957" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_88A2108E2171BF0E64073F268672989C" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_4D4C37D93E3B414C8FE99DBB8E48FBB6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" - "OwnerKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_527DEAD8AE7E4E8E99348D277DDC3AD3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2091BD7CF410472990D110B9A62F377F" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_5B538E2AD9BE4EEE81436217036C9D66" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_20C4B3F3B3834BEEAD67E86770EACBD0" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_716F98D87D6841DC8B6B346A171CE780" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_0ADF9758C9EA4C82A9116965FD5C824A" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_C5B0AE74BFAE45BA893232F4A15B6C27" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_F62AEFC871D44831804BCD4DF25C23F0" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_81776EE3B0D14F098DEF71346C834416" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_6DC1F90252234DA7B2C1EF13DF9104ED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_51F4D594D73E477E856528EBC42B0F9D" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_7A5B16731EEC4355B576D7DDFCA358BF" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_EC057A65CB2191A3A75D32D39E2C9281" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_271011AD979B4CBBBC9E510C783444B0" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_BAF05666A62E4063B67A990DBB654458" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_FC262487CAE543089CB587C8166C581E" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_0327CD370EE34AA4A8DD54EBBF99AC9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_99C527251870413C95F2B9A8CF693728" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_DA87F4E078FD438E9CBA27D5FD4B0543" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_FF838842077D44EAA2A6348E18D08E79" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_16758E102315420CAF07169A47EF16A8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_0B60CEFE230E4633B1FD838B2E9E4D46" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_55842097A1B740A79E6644F235B0C1AF" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_A8F6731403774C40A8E480A587DFE9C2" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_8446B116F7184398BD545B60AFF3FC46" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_6257F8A9A74A453984E407D6CB916AF5" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_EABF3921F3284D87909D094D538FA526" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_F8B53535DABD4E7D5E5951C921AC682A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_25E58EB806A4EC8427C4EB8A218A5087" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_3101F9AFF87F4586C5C12A29FB502D79" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_D27991107EA14C1C8B4A246C7658161E" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_792C41CB6C66CA56AB56A89516AF727F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_D499B5E2D6DE522B7109B3BAD3DECCE3" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_71DB4173D0A1DE774C90437928F85735" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_5B33C61F5CC73F6B67F7641FDCA19E32" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_BBD6FAD81E26ECE30F40C28556D906CE" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_5C8A40195D2FA713BE376F012B30D161" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_13C0B21BEF168B0190E20DD315BFA3E0" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_0D7CAA399994014550D649BDB391BF30" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_BA6689085C8CEBFE45F4F582C7CA6BE7" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_A4134201B9E55E9C7D6CC50C10CFE337" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" + "MsmKey" = "8:_39187295040B712CB7D5035C7086FE49" + "OwnerKey" = "8:_195464F81556BDF6BDAF089A424D04BD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_002B35A47F685C337FD43749C4416446" + "MsmKey" = "8:_392F5B3391E24BC7B8AFB886C9D58F21" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_39684D34359849A282ADE8ADFBEE0B4A" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_39FBC22F5F9A43D38B9E6BB6E9CF27D6" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" + "MsmKey" = "8:_3B555F76AB464054B547AC27E6A4B8EB" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_3BC1E078DE134E13918CE032F8DFFCEE" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" + "MsmKey" = "8:_3BF61A03D74549DB80701D11312AD464" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" + "MsmKey" = "8:_3C74C50A2447FC10944F3AAF2F4D8761" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" + "MsmKey" = "8:_3C74C50A2447FC10944F3AAF2F4D8761" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" - "OwnerKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" + "MsmKey" = "8:_3C74C50A2447FC10944F3AAF2F4D8761" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_212F275B12BB4DF098FC914C59EB5539" + "MsmKey" = "8:_3C9808B85BF249C491319517E96A5CB3" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_214C0A61A7B4A26FDBEB0788B62D0089" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_3E0A69D2C6C843CA93DE17024F9D4EC6" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_214C0A61A7B4A26FDBEB0788B62D0089" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_3E964B9E025440E98E189B782B208B5C" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_214C0A61A7B4A26FDBEB0788B62D0089" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_3F2C5644AA1143A5AC5EE5BC6A79F70D" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_214C0A61A7B4A26FDBEB0788B62D0089" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" + "OwnerKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_214C0A61A7B4A26FDBEB0788B62D0089" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_219960535F374502A9C52CAD67D578FA" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" + "OwnerKey" = "8:_7BEAA3F3CE3A41E1B5E7AA81B64066D9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_21CD9813D578469288F33648FDEC7EB6" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" + "OwnerKey" = "8:_32EF223E0EFB40A88EBE556C8EAA4AF3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_22654B798E344458845FBB6968188CAC" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" + "OwnerKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_22798D688AD347BE8DEA7C7822E632D0" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2285A247283A47AB9A1A13A63208315D" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2343DBD422AD4155ADE348A17AB95FEB" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_23ACF22077A74F59972762E7C95E5E46" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_23AFAB7A95344E269BA08E995B46A2D4" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_243FEEBC941A41DD9C5F736248AFD819" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" + "OwnerKey" = "8:_9CA2658ACD8741F43E77E56D9F53DCD5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24A11F29D1E1054DAFFED7697AF88CD2" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24A11F29D1E1054DAFFED7697AF88CD2" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" + "OwnerKey" = "8:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24A11F29D1E1054DAFFED7697AF88CD2" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24A11F29D1E1054DAFFED7697AF88CD2" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_3F7191903485AE336DDBE8F265888B67" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24A11F29D1E1054DAFFED7697AF88CD2" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_3F7191903485AE336DDBE8F265888B67" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24C2C186651045C29ABC82B522AF0835" + "MsmKey" = "8:_3F7D0CF2346D445E87AB02178B28BB04" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" + "MsmKey" = "8:_3F8F3AFA18DA43E5857C135FF1EA49DF" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_7C38E8CFCE24417FA2A80EC4AC70D9F2" + "MsmKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_C739986D38D4428AA8E16DD93CA8F2C8" + "MsmKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_6E350884A4BF44159F89904F4FDF6D50" + "MsmKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_19FE79ED86B14135BF9ABBC86A76C182" + "MsmKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_BC55DE2D96EE4BE7B63A10E87BA44D07" + "MsmKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_C0963962D778472C925FDA3E346DFD0F" + "MsmKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" + "OwnerKey" = "8:_94FAD8EAA57C4DB68ED601C6F5F7B54C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_8DA7C6C81DDC4F94A07D257BE53DF8B3" + "MsmKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_0ADF9758C9EA4C82A9116965FD5C824A" + "MsmKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_8ACE14AFC519438F9F7CFA1E57E857AA" + "MsmKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_B6288F8D68A9416A92DC90E280B06EA2" + "MsmKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_2CA572F0801641B0A319B8A36405E97C" + "MsmKey" = "8:_40D4803D1BCB496489B81B9239B44CC9" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_DB6DA2D86C6F4DC68545755D67200523" + "MsmKey" = "8:_40D856E4B63255C97FB18B2EEB03C7C2" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_70F8B2B0578A45A09CEC90DCB99959D2" + "MsmKey" = "8:_40D856E4B63255C97FB18B2EEB03C7C2" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_EE657F070AC54DDCBA5CD56C53F3FFDC" + "MsmKey" = "8:_40D856E4B63255C97FB18B2EEB03C7C2" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_6CAF4782BEEB4150B37C0293B79F0069" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_050B0C597A5045379389601790CC6923" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_1797384676994F4A8D20EA3733C18E0C" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_75FE1351602A4F8E85CB6F9A14FCFF09" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_F46463168E28445994747470940851B5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_B1849DE105A443F195D7510B391D0629" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_777D66705D8B49A0AA649B76F14CDC63" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_866E8D70379E4EC8B625FFE1F47FD889" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_9AF4DF764E3D402FA7B373767289455C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_D132FA26F719439394D7C487765D7801" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_58C396CAD94644E493315C2801EC4AF5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_F62AEFC871D44831804BCD4DF25C23F0" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_14727598BC6740079DA62CAB552BE8A5" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_5D4ACCBB99CE4379BFF48836F57C9CDB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_0E68B1E82AAD49399267ACAB562EC6F5" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_A959687D5A594B038895659012B722D7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_01E9CC4476A64B8C82EB0BE022CF047E" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_A382D02B948C4B54803DC488B33F0B3A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_67B28C0C25A549578A5E328EA971DE36" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_C630F7E8EA4840BAB1B2559D71483F8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_0205F5D1886848139710911DD96B405B" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_D8F5958646964348B09B2F5870ED1BE0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_0780B22F54AB492BB65CAEE79E2A59BA" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_4E05FFBA65CF4791A30C1FA9F5B7C8C5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_E9B8002F9879403F994F719F640BFF20" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_655FCCA1E86A4494A1245290A41E97B8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_55F9FC11F41F4C3EBF98220500974FBF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_0368786955D94604AC394EEB6424743F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_97A8C91BA51847EE91CFF4DB840161FA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_3F7F9B04DCFE498FB90F10FD533E50C8" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_48FEC7295A1F49AFA9658B28040D82D0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_7A5B16731EEC4355B576D7DDFCA358BF" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_1359C7CA18A745EA8445F44058628957" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_5B852E420FAF4CC99F72BCEC55D0342E" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_FE8069F25C7542899AA4D3DA4F912B1C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_99C527251870413C95F2B9A8CF693728" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_02BE941E90844B118EE56900AB646A06" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_FF838842077D44EAA2A6348E18D08E79" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_8B7D01F246DC495996E2A46DB76D4F84" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_4D4C37D93E3B414C8FE99DBB8E48FBB6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_0B60CEFE230E4633B1FD838B2E9E4D46" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_5B538E2AD9BE4EEE81436217036C9D66" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_84D1E150F94A4734AF69639266E603A9" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_ABF50DEAD3F44E68B097345106E563D8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_A8F6731403774C40A8E480A587DFE9C2" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_7A58EB8E4D024E9ABEEF4643AD40C308" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_8446B116F7184398BD545B60AFF3FC46" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_8146F9A2DB6A4D498ED4A46C80ECC662" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_B873BE40B7AA4D4FACE3565666F45F51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_9F9DBDF1BE674422A100529C9BAE0E4A" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_F5FE62D38D5C4D30A5276F398ACE2208" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_9B2EFE50DAD1458E8932CCF4310BEC9F" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_E129F749CD8340D59FB77411E5B5DD52" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_7776F0B3F25D4F958A79A3B702D72900" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_C7B8B31323F147A19100C0D701B4101C" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_AD573111A7F14C01ABAD569CED96D350" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_95FA2F22712340978792F943907E95B4" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_87840206D46747A097E4ED2B15D78CFA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_E0DD91B6820043019824432F3CCAC570" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_78876DFFB8F54757A7E7CD5F6937D821" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_2F1F84E9CA7D46DF9F9739205F12F95B" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_6E83BDD242CD403E88C6174D59C0F7D4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_B2011D514CF04C259ABAA54E70395610" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_EB98E04073DF4D0A81057B1F53EC6632" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_04A14015937743D8AA55044D7126131B" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_1947F3829A764DD2A928A23101DE2206" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_01D43FE872054FCF8A67E90ED85E1CC4" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_56340E8817D0425AA6F13E35C99A2EF1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_DECDF56F984E473E92323CACE22A1C1C" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_2B914DD2B9EB4A0383F6BD3034EA3F53" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_638ED98CAD46C3F510314D5BA18F5FFA" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_81776EE3B0D14F098DEF71346C834416" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_95E95D512F7447DAA4C6FD50CE087AEA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_B13A099F228149CDB35ED8B4D88ACEDE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_2E3DA24B734E4A11A8D0E0753635C7AE" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_6DC1F90252234DA7B2C1EF13DF9104ED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_1F07CC99CC9947599D83707F1D15766A" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_A5C386CA7E4D475C8869A687EBEF8A04" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_9F396770E1B644CA889B7ED6A58E40DA" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_60532656D73843A7B72A06A8FDF39F18" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_7FF631853BCE4C7080E8E8CB1DBCDCC1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_67415B187EDD4DB2AF1B659373386D94" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_8988F38293E6443C82ED10D12481699D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_8620B1F0C2FA4D348B9E63F0BE9FA1ED" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_532344DBAAF142C2AFF7F262E5522497" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_AF2FD3529ACE48B6A5497A6197A020AA" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_6410B7CD543C4AA1861A2AC1D40D5169" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_14D46FEB93FA4D299E6056B1E348312F" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_9950BFEA0E494DFDBF222F8D162723FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_9C7BC3B28FEF0D6A3C7DF01D18722E6C" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_76060290214147F1808CF4DF19B364E0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_CCB130078DDD4B288794D03E93E5D82B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_EC057A65CB2191A3A75D32D39E2C9281" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_6979A6B680CB47C7A69BE7860AF298F6" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_BE5D2C19D8FE4FA1BDF8F4B535872332" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_975852014F5B4FACBBDF5C881DA76681" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_BAF05666A62E4063B67A990DBB654458" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_D3B9100D444743C5A5B2BEADE3C79799" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_0327CD370EE34AA4A8DD54EBBF99AC9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_1393BDC59A6B4C81B84D5C2C618156EF" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_7741A8335D6344BFB4473EE8456BA323" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_C9119A99605F402ABE71C62A7381323B" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_DA87F4E078FD438E9CBA27D5FD4B0543" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_3B678EA0E9FA4D20B7D90D75DCAF300C" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_16758E102315420CAF07169A47EF16A8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_80443D2C922030B6CD68CCA745F0E5B1" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_88469FDDED8C4BF399DB4ABD4605D307" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_57C31C2439A34DC987398DE7F6C5B1E6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_7B84FC380764415ABB407E76018A6C1F" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_197BB23CB89E43A5B6ADC5825C6EA03C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_C8225AB4F128DD5C462799E34B2089A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_CDC750ABB7DA4D5BB101583406E8DB9E" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_243FEEBC941A41DD9C5F736248AFD819" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_0AD2B80BD2AC492DB97EE4C5ED1BF5F8" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_B41CF285191B458BB15E99523C5B2A40" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_CAB5C2A388B34D1F874E72AC38354BFA" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_62667E51DDAC4C82A79030A542EB7509" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_53C949C71D0F422B8978AD416438B086" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_94FAD8EAA57C4DB68ED601C6F5F7B54C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_B493379D394F49F2A257ACE3C4BEF216" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_CF64DAC62FED43EE9B6F411BE5FBF065" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_AAD83CEDDDC54AAFB0655F23A6225024" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_0912E1C1C1F24DDCA531C6864D1665A8" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_73D3FD7993624E07B5E561B11755AC2B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_D27991107EA14C1C8B4A246C7658161E" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_CE6D89188B1C43438BB2A2F8F3334887" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_818C90D1A56563131B63B1CA3CA576F3" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_5C837F67EF074C468C3D6F326FB979E2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_385E4C4F5EED8818E2DF6396C14184B2" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_16EB40669FCA68C2E34800ABC4D81F41" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_9818F96B07084AA4B619A0A41EE9C6B5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_60307A9582FE2D7618125043293A02AB" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_999A55ECDBA24B00AEE2A5A207F8030D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_80FAF08BE91DC1EC96DC613154D44F7E" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_DD98189F70C149948FEBEDB7FFD024BB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_D4EC43B9F9144598017136DE430174D9" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_515A8CFB844E4B618CB13EC19A0FE75C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_9AA9B1640404D837BA8E590A2A7B3FDE" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_A5281AE19E3C0466830CC797A9C17602" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_F05C2A6ABC3663BA3E2F3CF0A8A61AF0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_C11E19B0EB4B8A1E84235A23B46ABD98" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_A2C4BBDA6C653F878CF9F09DDB19EB67" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_5A3B9691BBA0905D20072B75D246E43D" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_EABF3921F3284D87909D094D538FA526" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_AD652B25F4FB47219D9D111AD130AC03" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_F209B5DB23FDBB924E78243E39A49B2D" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_98BDFB20000E4419AA0EA3BD23B4CE59" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_A0CAEAFA8AF476AE9779326B71CAD208" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_4A127626130436A8485B10D9D040C3F8" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_DCED769F3CED40F68BBF793A3190390F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_F1D679BED009170305B2519CD78CA300" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_FC1B3053EE004D9CA842FE7ACAB59109" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_F2BF868F37FD4EBB9EEE93828F6B8B80" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_3AF27C2F3C6F5550735A7366B1261EFF" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_D147A209D52B47799F51651D4069C15E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_FEEDC4F58B6148F79B34BCD14DEF1B1B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_588842B28A75F1BD35C5CDDBB0F123D6" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_35037DF8DE6149C18293212108B27384" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_5B33C61F5CC73F6B67F7641FDCA19E32" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_504E92556FF74DC6857BCBBB97FB7EB8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_C764A96E38DC71EE64244082FCEF9637" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_D21D86E7F5F54FBF8413690CA489839C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_002B35A47F685C337FD43749C4416446" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_89C50D3BE2F9490EBB5D778B96C32C9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_F8B53535DABD4E7D5E5951C921AC682A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_24A11F29D1E1054DAFFED7697AF88CD2" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_4EB2192CC00FB0EB1C5133471260033C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_214C0A61A7B4A26FDBEB0788B62D0089" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_08F2AD45918FE7A8AD9BEDB57716F237" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_EDCDF4FA15AC1B4C43D09F8B96C20B7A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_3032BD5A329D929A96C6738327C6631A" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_25E58EB806A4EC8427C4EB8A218A5087" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_3F7191903485AE336DDBE8F265888B67" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_D61738826E13F256E5D5365099EA0D68" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_8765771DDE4A840EC489FFEEE5E7780A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_A9035D942941788E21A775971D3379AD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_779089C4535D1F4BE27BCFA5629CC6B4" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_0F1F0D6286EEEB4EC6814F48A7D049A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_9545603599F3A85DE070D94A8CE1F201" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_AA98FEAE530E800F83819D70C36CAF58" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_88A2108E2171BF0E64073F268672989C" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_4BC9CD649C175DEADD4B1DEEC6E3E6A0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_7FA12247CFA9C7A384CE9D1B345A93E5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_969FF7796C8282207A4D873D682F5872" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_8BB9413DD232277D8EC384477B23E618" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_A76A17A95231B9F651C86B8747D361A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_168090D595D80D0A86442948560A106E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_B28C76E809A91245E9FA657909D423F4" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_0D1200924CA21F19FF53C62B7B8354FF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_45E53FB27049D042E5DED373E26F270F" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_86A788B950814C0859DE3243B664552F" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_784ACDE198073C9AECF536BBDD06E2CA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_C2C7C844CF816EEE05C94D4477A24455" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_DE4CD1E105AF4B87366D07C46F4C2663" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_8A2729C4F323C0E2EFEB67AC17F2900C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_0D402C75C4105E49FA08F1F21522121B" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_792C41CB6C66CA56AB56A89516AF727F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_234A61A2BB88F06DD30B16DE9F66E565" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_24EED38216634C0AFCFA545072D23596" - "OwnerKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_25B99998ED179B2DCB227ABF4BE00662" - "OwnerKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_26BB9E5994524C65B5519578704FB142" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_271011AD979B4CBBBC9E510C783444B0" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_AE2D7B02724DDA7F2129EFCC431086A2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_8DA7C6C81DDC4F94A07D257BE53DF8B3" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_5C8A40195D2FA713BE376F012B30D161" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_0C35F03470F41E63CFC2314557D58C9F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_C17E953CE554458FA3D973414751D2CC" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_B6288F8D68A9416A92DC90E280B06EA2" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_67B28C0C25A549578A5E328EA971DE36" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_1227F5127E12287474AC428519CF1F5A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_0D7CAA399994014550D649BDB391BF30" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_2E3DA24B734E4A11A8D0E0753635C7AE" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_1F07CC99CC9947599D83707F1D15766A" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_8620B1F0C2FA4D348B9E63F0BE9FA1ED" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_A4134201B9E55E9C7D6CC50C10CFE337" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_14D46FEB93FA4D299E6056B1E348312F" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_6979A6B680CB47C7A69BE7860AF298F6" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_BE5D2C19D8FE4FA1BDF8F4B535872332" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_592B16F8087356012F59D4A1C7745E4E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_E74C8D77D5E37A69B6984831650003C7" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_CDC4036AF5D00A8FCCF3DE0224C4F001" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_D3B9100D444743C5A5B2BEADE3C79799" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_1393BDC59A6B4C81B84D5C2C618156EF" + "MsmKey" = "8:_41166B47E9DED0CCB5B576735A417525" + "OwnerKey" = "8:_195464F81556BDF6BDAF089A424D04BD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_C9119A99605F402ABE71C62A7381323B" + "MsmKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_3B678EA0E9FA4D20B7D90D75DCAF300C" + "MsmKey" = "8:_427AE465F055A535566FA1FBCEE3948A" + "OwnerKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_605BE8A0427948D6B90C492E1BD29A76" + "MsmKey" = "8:_439160081B2C4D7FB4B688D7EC512765" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_857F5B9F107D4EE0A084B7EFFF52D005" + "MsmKey" = "8:_43BCD1D58AC6473D81AD981399490F29" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_73A58D0939B541DFB73116EDFD2DF065" + "MsmKey" = "8:_444419ADD92D4E62986B8F8F006A3408" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_44B6C4F217E64B8680113DF51E0B5C55" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_46364AC2527B05575C1A7DC2C4A003FE" + "OwnerKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_46364AC2527B05575C1A7DC2C4A003FE" + "OwnerKey" = "8:_55F9FC11F41F4C3EBF98220500974FBF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_46364AC2527B05575C1A7DC2C4A003FE" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_385E4C4F5EED8818E2DF6396C14184B2" + "MsmKey" = "8:_46364AC2527B05575C1A7DC2C4A003FE" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_46364AC2527B05575C1A7DC2C4A003FE" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_4645D74306021CA44B3BA60D952E935A" + "OwnerKey" = "8:_57EEA8113CDE38F44305343E63A5EBC8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_4645D74306021CA44B3BA60D952E935A" + "OwnerKey" = "8:_60AEB7AED27149A08779F3F61D0745D8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_F1D679BED009170305B2519CD78CA300" + "MsmKey" = "8:_4645D74306021CA44B3BA60D952E935A" + "OwnerKey" = "8:_700D765813FB453FF69B8805E111B1C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_4645D74306021CA44B3BA60D952E935A" + "OwnerKey" = "8:_F1D42F5FB7484B7D884F14677FCC7001" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_27E33DD3159943A180F3FD6E7A0A88F5" + "MsmKey" = "8:_47A1E70B29974E10B8097F103EB4A2D6" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_27FCB52AD02545A5A271B25D61F652AB" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_289443165ADD4A66B8F54919CCAC19CA" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_28F64806236246FD8929239A675BD1B7" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_D8F5958646964348B09B2F5870ED1BE0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2903BC31F1FC409428A55014360EA7D9" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_1CB01662D311443BA86B4C7D1C5F91BC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2903BC31F1FC409428A55014360EA7D9" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_2DC66B6B0ADA43EA9D508F2B6E62C1E8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2903BC31F1FC409428A55014360EA7D9" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_6EEF588F24794BD699D2C5F6A0670472" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2903BC31F1FC409428A55014360EA7D9" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2903BC31F1FC409428A55014360EA7D9" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_87840206D46747A097E4ED2B15D78CFA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2903BC31F1FC409428A55014360EA7D9" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_78876DFFB8F54757A7E7CD5F6937D821" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2903BC31F1FC409428A55014360EA7D9" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_6E83BDD242CD403E88C6174D59C0F7D4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2903BC31F1FC409428A55014360EA7D9" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2903BC31F1FC409428A55014360EA7D9" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_81776EE3B0D14F098DEF71346C834416" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2903BC31F1FC409428A55014360EA7D9" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_DB755541B20243BDB9467F3470981BC4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2903BC31F1FC409428A55014360EA7D9" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_BAF05666A62E4063B67A990DBB654458" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_293BB0C972324265A8F6FB8D8FC20661" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_DA87F4E078FD438E9CBA27D5FD4B0543" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_16758E102315420CAF07169A47EF16A8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_EE657F070AC54DDCBA5CD56C53F3FFDC" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_6CAF4782BEEB4150B37C0293B79F0069" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_FEEDC4F58B6148F79B34BCD14DEF1B1B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_E129F749CD8340D59FB77411E5B5DD52" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_F8B53535DABD4E7D5E5951C921AC682A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_25E58EB806A4EC8427C4EB8A218A5087" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_3F7191903485AE336DDBE8F265888B67" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_3101F9AFF87F4586C5C12A29FB502D79" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_06032F260A8DEC8FFD196041FDAD9A14" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_45E53FB27049D042E5DED373E26F270F" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_8A42A9274EFB189CCEE03074E79EB5DC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_0D1200924CA21F19FF53C62B7B8354FF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_792C41CB6C66CA56AB56A89516AF727F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_63671CEDA4AA460FA5689EBD8101E817" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_18F64B11FA2B3AF2FD7BC1EBF31D85A4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_0E68B1E82AAD49399267ACAB562EC6F5" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_1227F5127E12287474AC428519CF1F5A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_FF838842077D44EAA2A6348E18D08E79" + "MsmKey" = "8:_483D147777EFA8C37B8D462BA94687D7" + "OwnerKey" = "8:_0D7CAA399994014550D649BDB391BF30" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" + "MsmKey" = "8:_489053C2C7E64A8EB7E695C24674C475" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "MsmKey" = "8:_48FEC7295A1F49AFA9658B28040D82D0" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_49646FD418844A059636F991913C7428" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_498D4F9B9ACC450EBF5E5D239FA1A0C0" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_BD0C134F8B3D461082A684578110A12C" + "MsmKey" = "8:_49BFB19D16A24DE78D3C67899AE263D6" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_84381ED1D01A444DA4B139C706F80BC9" + "MsmKey" = "8:_4AA45544318FAE6B23403F8280F2F677" + "OwnerKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_2F1F84E9CA7D46DF9F9739205F12F95B" + "MsmKey" = "8:_4B4619FA9E87412183EAD43D28224716" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_2E3DA24B734E4A11A8D0E0753635C7AE" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_1F07CC99CC9947599D83707F1D15766A" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_ABF50DEAD3F44E68B097345106E563D8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_BD3B5B85C4E445248560F41BD0DE8BE7" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_9950BFEA0E494DFDBF222F8D162723FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_385E4C4F5EED8818E2DF6396C14184B2" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_002B35A47F685C337FD43749C4416446" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_F05C2A6ABC3663BA3E2F3CF0A8A61AF0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_D142F4C5A6246588440689DF4036E8F2" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_5CC8DF7128C49B8D92F54987837BE0D6" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_08F2AD45918FE7A8AD9BEDB57716F237" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "OwnerKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" - "OwnerKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" + "MsmKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_4BA0772E1F5B47EE9DA191683D222745" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" - "OwnerKey" = "8:_99C527251870413C95F2B9A8CF693728" + "MsmKey" = "8:_4BC9CD649C175DEADD4B1DEEC6E3E6A0" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" - "OwnerKey" = "8:_8446B116F7184398BD545B60AFF3FC46" + "MsmKey" = "8:_4BC9CD649C175DEADD4B1DEEC6E3E6A0" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_4BC9CD649C175DEADD4B1DEEC6E3E6A0" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" - "OwnerKey" = "8:_3B72D4DBB2DB48BFAD0801684500E08D" + "MsmKey" = "8:_4BC9CD649C175DEADD4B1DEEC6E3E6A0" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" - "OwnerKey" = "8:_BD0C134F8B3D461082A684578110A12C" + "MsmKey" = "8:_4BC9CD649C175DEADD4B1DEEC6E3E6A0" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" - "OwnerKey" = "8:_ACC9D7826CBE472A8766CAF892A6B8A9" + "MsmKey" = "8:_4BC9CD649C175DEADD4B1DEEC6E3E6A0" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_4BE84EA27B5340128C46B9FF78B2828B" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_4C2D7B63D1124D4BB0DB0BE0EECF61FB" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" - "OwnerKey" = "8:_E0A90872657427483F053288CC41F7BF" + "MsmKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" - "OwnerKey" = "8:_D142F4C5A6246588440689DF4036E8F2" + "MsmKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" - "OwnerKey" = "8:_13B3F1052A56A2AA76DB87CEE3FDEE7A" + "MsmKey" = "8:_4D4C37D93E3B414C8FE99DBB8E48FBB6" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" - "OwnerKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" + "MsmKey" = "8:_4D87719995DCEF2E9313F8B3B95B7274" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2A55321B97C0400287EFF2740925CAF8" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_4D87719995DCEF2E9313F8B3B95B7274" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2ABF3C2F493743AE95DFB0B20EA79021" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_4D87719995DCEF2E9313F8B3B95B7274" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2AED01C7EC6542DBA02321974108B0A3" + "MsmKey" = "8:_4DE2F6B4CB1240B9857D92FE0E351063" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2BD2099533944140B42CFF8E420B7E52" + "MsmKey" = "8:_4E05FFBA65CF4791A30C1FA9F5B7C8C5" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2C7077EC031245D3A7672A143BDA4CAB" + "MsmKey" = "8:_4E2528B097824D5F9915F870179C3668" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2CA572F0801641B0A319B8A36405E97C" + "MsmKey" = "8:_4E8909C2671C4FEBAE2D9D055E7DBF01" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2CBD0767BD3D4FE49EEF2B824C122552" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_4EB2192CC00FB0EB1C5133471260033C" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2D60AB36513C46C78C8D1C3B182AD525" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_4EB2192CC00FB0EB1C5133471260033C" + "OwnerKey" = "8:_FE8069F25C7542899AA4D3DA4F912B1C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2D8F89A0089B45B9A02D9A91A2D76987" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_4EB2192CC00FB0EB1C5133471260033C" + "OwnerKey" = "8:_C8225AB4F128DD5C462799E34B2089A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2DB329A52A3743378C38FFAAC6E4B773" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_4EB2192CC00FB0EB1C5133471260033C" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2DD98C1858E945F19BA2B91B316B07A1" + "MsmKey" = "8:_4F2ACE4162684790B7EFC482F383A426" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2DE803115352471BA7B719E7A0F4F047" + "MsmKey" = "8:_4F2FA84345B8495CBA758099FE43BE26" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2E21F153B5AD896A9931D7560E3EC457" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_4F7A58248FC345C3A5412F9596FCF95C" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2E21F153B5AD896A9931D7560E3EC457" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_502E07D98F7D41258B90D0C4E6534AC9" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2E21F153B5AD896A9931D7560E3EC457" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_50306E8DAC38471AAB28C2754B9E6124" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2E3DA24B734E4A11A8D0E0753635C7AE" + "MsmKey" = "8:_504E92556FF74DC6857BCBBB97FB7EB8" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2E9A505765EB42E38C5FD784A3A5F144" + "MsmKey" = "8:_50D0E5D4B849442E8FEAA043126CE608" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2F1F84E9CA7D46DF9F9739205F12F95B" + "MsmKey" = "8:_515A8CFB844E4B618CB13EC19A0FE75C" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2F2E12B5737144529E85E63A1D63C778" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5193F4E9C8FD027F6DA8742BC80C4D34" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3032BD5A329D929A96C6738327C6631A" - "OwnerKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" + "MsmKey" = "8:_5193F4E9C8FD027F6DA8742BC80C4D34" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3032BD5A329D929A96C6738327C6631A" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_5193F4E9C8FD027F6DA8742BC80C4D34" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3032BD5A329D929A96C6738327C6631A" - "OwnerKey" = "8:_0B60CEFE230E4633B1FD838B2E9E4D46" + "MsmKey" = "8:_5193F4E9C8FD027F6DA8742BC80C4D34" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3032BD5A329D929A96C6738327C6631A" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_5193F4E9C8FD027F6DA8742BC80C4D34" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3032BD5A329D929A96C6738327C6631A" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_522E9A0AA15C4225890A6A012B67D68E" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3032BD5A329D929A96C6738327C6631A" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_522E9A0AA15C4225890A6A012B67D68E" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3032BD5A329D929A96C6738327C6631A" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_522E9A0AA15C4225890A6A012B67D68E" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_527B1D31420E4B23B111E4FC4C7D4DB3" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_303F7CF3217B4015923D69C06C37BC75" + "MsmKey" = "8:_527DEAD8AE7E4E8E99348D277DDC3AD3" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_311C9D1D07FB4B038396A7DB0015BAF1" + "MsmKey" = "8:_5282B06E94F64DAF9ED82C9558A5BDDB" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_319B5098468C036CF599E7E6019DC0A2" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_532344DBAAF142C2AFF7F262E5522497" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_319B5098468C036CF599E7E6019DC0A2" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_53F3D33A66FC450C9DE75E9D9BFBA54A" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_319B5098468C036CF599E7E6019DC0A2" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_54BF7061F9C747AC8812765DBF13E4FC" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_31A44E8A5FCC49F49085151A64B5E15A" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3205AE3C3826417C96B22E013AB23961" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_9AF4DF764E3D402FA7B373767289455C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_8DA7C6C81DDC4F94A07D257BE53DF8B3" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_58C396CAD94644E493315C2801EC4AF5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_C5B0AE74BFAE45BA893232F4A15B6C27" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_975852014F5B4FACBBDF5C881DA76681" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_7DA9550944E242C8B9D670E9FE8EE460" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_0327CD370EE34AA4A8DD54EBBF99AC9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_B1849DE105A443F195D7510B391D0629" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_866E8D70379E4EC8B625FFE1F47FD889" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_197BB23CB89E43A5B6ADC5825C6EA03C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_D132FA26F719439394D7C487765D7801" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_F62AEFC871D44831804BCD4DF25C23F0" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_0E68B1E82AAD49399267ACAB562EC6F5" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_709E7345734C49C785344FF2FEB5F15C" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_7A5B16731EEC4355B576D7DDFCA358BF" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_FF838842077D44EAA2A6348E18D08E79" + "MsmKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_84D1E150F94A4734AF69639266E603A9" + "MsmKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" + "OwnerKey" = "8:_2E19CF28D9950189E4EFF269041F0FD8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" + "OwnerKey" = "8:_ABF50DEAD3F44E68B097345106E563D8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" + "OwnerKey" = "8:_4E2528B097824D5F9915F870179C3668" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_BD0C134F8B3D461082A684578110A12C" + "MsmKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_2F1F84E9CA7D46DF9F9739205F12F95B" + "MsmKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" + "OwnerKey" = "8:_9950BFEA0E494DFDBF222F8D162723FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_638ED98CAD46C3F510314D5BA18F5FFA" + "MsmKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" + "OwnerKey" = "8:_69AB1DD380134079B4877AC8EA430A2D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_EB8BA7C21ABA40638C3816DE39B8B8AA" + "MsmKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" + "OwnerKey" = "8:_F05C2A6ABC3663BA3E2F3CF0A8A61AF0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_8D916F703BFB47DEB61E0FF69D9F6189" + "MsmKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "MsmKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_2E3DA24B734E4A11A8D0E0753635C7AE" + "MsmKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" + "OwnerKey" = "8:_BFB995BCB8239D0D35E57B0EEF41FC6B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" + "MsmKey" = "8:_55C08B3E075E46E0B8A1523FFDF06AD8" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_55EFD5C9477B4C7EA11F78E3928B0DC7" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_A73B77AB52A14A06924029907A4E19B1" + "MsmKey" = "8:_55F9FC11F41F4C3EBF98220500974FBF" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_14D46FEB93FA4D299E6056B1E348312F" + "MsmKey" = "8:_56340E8817D0425AA6F13E35C99A2EF1" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_9C7BC3B28FEF0D6A3C7DF01D18722E6C" + "MsmKey" = "8:_566D8126C1244DEB8E50968F76E754C4" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_57196EE3DC5D4680BFF12E73B0BFA07F" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_5753B720062CAD52F12B916125947BE1" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_5753B720062CAD52F12B916125947BE1" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_5753B720062CAD52F12B916125947BE1" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_57C31C2439A34DC987398DE7F6C5B1E6" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_57EEA8113CDE38F44305343E63A5EBC8" + "OwnerKey" = "8:_F1D42F5FB7484B7D884F14677FCC7001" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_57EEA8113CDE38F44305343E63A5EBC8" + "OwnerKey" = "8:_700D765813FB453FF69B8805E111B1C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_57FAC309E7AD48B78BDE11424276E2A8" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_818C90D1A56563131B63B1CA3CA576F3" + "MsmKey" = "8:_5827C37683574CA6BAC4868921D71620" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_583588A0B8CF4F84A0E0CF3EC72745AF" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_58C396CAD94644E493315C2801EC4AF5" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_592B16F8087356012F59D4A1C7745E4E" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_592B16F8087356012F59D4A1C7745E4E" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_5B33C61F5CC73F6B67F7641FDCA19E32" + "MsmKey" = "8:_592B16F8087356012F59D4A1C7745E4E" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_592B16F8087356012F59D4A1C7745E4E" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_D142F4C5A6246588440689DF4036E8F2" + "MsmKey" = "8:_592B16F8087356012F59D4A1C7745E4E" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_08F2AD45918FE7A8AD9BEDB57716F237" + "MsmKey" = "8:_592B16F8087356012F59D4A1C7745E4E" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_BB9997D921573F9889C5EB78392A5460" + "MsmKey" = "8:_592B16F8087356012F59D4A1C7745E4E" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" + "MsmKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" + "MsmKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" + "MsmKey" = "8:_5AECE1E39D8F63266306FA5F9F3057AC" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" + "MsmKey" = "8:_5AECE1E39D8F63266306FA5F9F3057AC" + "OwnerKey" = "8:_D6144464659746A8AAA12CCE9508EEE0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" + "MsmKey" = "8:_5AECE1E39D8F63266306FA5F9F3057AC" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_5AECE1E39D8F63266306FA5F9F3057AC" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_5AECE1E39D8F63266306FA5F9F3057AC" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" + "MsmKey" = "8:_5AECE1E39D8F63266306FA5F9F3057AC" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_82A07788C4F0390092FA707DCB5CA209" + "MsmKey" = "8:_5AECE1E39D8F63266306FA5F9F3057AC" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32A789F4BBF15B847138B319652834BF" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_5AECE1E39D8F63266306FA5F9F3057AC" + "OwnerKey" = "8:_EEC77B01CA74259E38B4BF930D62BBCA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32BC4BF42CC040299C37E6C214492928" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5AECE1E39D8F63266306FA5F9F3057AC" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_32D8F819A53145E1B5EB3B705C1B3281" + "MsmKey" = "8:_5B50C8B4016D419592F238C27112D939" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_332A859EB8C541A1A90A998EE3709DF7" + "MsmKey" = "8:_5B538E2AD9BE4EEE81436217036C9D66" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_340686EA0C7D495D872D8CC893B87AE0" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5BFFFF7FD7100CE916F389F8186B56E4" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_34D818AA520F45E993FF680D36AD063B" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5BFFFF7FD7100CE916F389F8186B56E4" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3578A5B920F94C4DB0383BC28AA394FF" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5BFFFF7FD7100CE916F389F8186B56E4" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_35905B61896E4B85BA1D8C0529AF72AC" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5BFFFF7FD7100CE916F389F8186B56E4" + "OwnerKey" = "8:_FC1B3053EE004D9CA842FE7ACAB59109" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3641F13EEE6D40418EBD3ABED7007E10" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5BFFFF7FD7100CE916F389F8186B56E4" + "OwnerKey" = "8:_D61738826E13F256E5D5365099EA0D68" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_368AA1A6224844B6B09059C68A46DBE6" + "MsmKey" = "8:_5C837F67EF074C468C3D6F326FB979E2" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_385E4C4F5EED8818E2DF6396C14184B2" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_385E4C4F5EED8818E2DF6396C14184B2" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_385E4C4F5EED8818E2DF6396C14184B2" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_A382D02B948C4B54803DC488B33F0B3A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_38B33ECD4A0F4FDF8407B1FC67E626FA" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_1359C7CA18A745EA8445F44058628957" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_38F70C23CF919177A4ED34A340D64FFE" - "OwnerKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_FE8069F25C7542899AA4D3DA4F912B1C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_39439E13605746F7977562D5DC45011B" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_3E964B9E025440E98E189B782B208B5C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3A43E488F1DB4702B7656E80EE56C91A" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_002D58F05FFA46FDBDB54483374D69B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3A446A1DFE2144A7907EDFAD418ED766" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_8B7D01F246DC495996E2A46DB76D4F84" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3A63E9B6336859FB898A1207E36A64D2" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_5B50C8B4016D419592F238C27112D939" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3A63E9B6336859FB898A1207E36A64D2" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_ECBDCCED98AC46C59E8FCB78D0C523E3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3A63E9B6336859FB898A1207E36A64D2" - "OwnerKey" = "8:_8D916F703BFB47DEB61E0FF69D9F6189" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_392F5B3391E24BC7B8AFB886C9D58F21" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3A63E9B6336859FB898A1207E36A64D2" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_A5CBCB7AEA5649EF8D26C13CD74B09E2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3A63E9B6336859FB898A1207E36A64D2" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_CEB3E300107F4C12BEC487845DA4E174" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3A63E9B6336859FB898A1207E36A64D2" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3A63E9B6336859FB898A1207E36A64D2" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3A63E9B6336859FB898A1207E36A64D2" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_8146F9A2DB6A4D498ED4A46C80ECC662" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3A63E9B6336859FB898A1207E36A64D2" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_7BEAA3F3CE3A41E1B5E7AA81B64066D9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3A63E9B6336859FB898A1207E36A64D2" - "OwnerKey" = "8:_BB9997D921573F9889C5EB78392A5460" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_F5FE62D38D5C4D30A5276F398ACE2208" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3AF27C2F3C6F5550735A7366B1261EFF" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3AF27C2F3C6F5550735A7366B1261EFF" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_7776F0B3F25D4F958A79A3B702D72900" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3AF27C2F3C6F5550735A7366B1261EFF" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_EB98E04073DF4D0A81057B1F53EC6632" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3AF27C2F3C6F5550735A7366B1261EFF" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3AF27C2F3C6F5550735A7366B1261EFF" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3AFF9A368102408C91046427F4596A4D" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_681A6EBA6A68461C95E7263C5490328E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3B03D582CA5E4ABBA90B5BED06BEBA30" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_EC057A65CB2191A3A75D32D39E2C9281" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3B436E4817B84B349458AFA6EBD18FE3" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3B678EA0E9FA4D20B7D90D75DCAF300C" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3B72D4DBB2DB48BFAD0801684500E08D" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_C8225AB4F128DD5C462799E34B2089A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3BF227CEFB4A48A292BD5331AEEAB6B9" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3C53BF2D2D5C4504A0EE9A85F5A5DA8D" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3CFD50619890440D8E99A14272FA50D8" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_16EB40669FCA68C2E34800ABC4D81F41" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3D0690A621DC4F51914705AAA34C0E81" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_7DA9550944E242C8B9D670E9FE8EE460" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_C17E953CE554458FA3D973414751D2CC" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_D21D86E7F5F54FBF8413690CA489839C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_FC262487CAE543089CB587C8166C581E" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_4EB2192CC00FB0EB1C5133471260033C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_55842097A1B740A79E6644F235B0C1AF" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_BB538FA2BB35D79B1A509C75F509CEED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_E74C8D77D5E37A69B6984831650003C7" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_88B4F9E12DA3A564E867789D16238F81" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_0CE6E39840DD4AFA8D75CF4E5FAE6F46" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_C7C4378630198E8FEAE1BFA8CFD591A2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_E0A24BFA11AB3044C761E3C573C63E35" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_7B84FC380764415ABB407E76018A6C1F" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_5753B720062CAD52F12B916125947BE1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_ACB2FA4C64E6218003881DB86FAE60CD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_13C0B21BEF168B0190E20DD315BFA3E0" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_BA6689085C8CEBFE45F4F582C7CA6BE7" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_9CA2658ACD8741F43E77E56D9F53DCD5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" - "OwnerKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3E941E8EA87F158B58927EE85FAC5BD4" - "OwnerKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3EE7A6E2334245A7A0DA54A8367AC9FD" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3EF2B71DFA0287A135EC6D2EED20D989" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3EF2B71DFA0287A135EC6D2EED20D989" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_C3EDD553A32A0F38069B9AC4058185CA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3EF2B71DFA0287A135EC6D2EED20D989" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3EF2B71DFA0287A135EC6D2EED20D989" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3EF2B71DFA0287A135EC6D2EED20D989" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_5C8A40195D2FA713BE376F012B30D161" + "OwnerKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3EF2B71DFA0287A135EC6D2EED20D989" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_5D108855712F4CF4BF2EC9341B54F414" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3EF2B71DFA0287A135EC6D2EED20D989" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_5D4ACCBB99CE4379BFF48836F57C9CDB" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3F5BF7D569384596BF6FC701EFFECDF1" + "MsmKey" = "8:_5D71B277C4094CB78F15A21AD45628F8" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3F7F9B04DCFE498FB90F10FD533E50C8" + "MsmKey" = "8:_5EFD2F1384E54540AC9B8A0FDC2D115F" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3F8E8241EDFCEA59F73D5CF96B6C5177" - "OwnerKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" + "MsmKey" = "8:_5F35B58C6C1B4C29AFE168DA80BD218C" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4046BC6714CD4C6BA6590D5B36FA1EE6" + "MsmKey" = "8:_5FB303FF5D00491090311B811D4414D2" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4086BBE9D491420D9D58094A754D33A6" + "MsmKey" = "8:_60532656D73843A7B72A06A8FDF39F18" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_408D9620395D4EB890E166D1EBBD4392" + "MsmKey" = "8:_608B8B5F90364C4BB202C91CEB424C29" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_40B729EB21D94AA6BB6363FC56BE6BDB" + "MsmKey" = "8:_60AEB7AED27149A08779F3F61D0745D8" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_41973C8B8BF14359A8BB5710596C2A00" + "MsmKey" = "8:_610B8A9E00FC4B4B966C85057C9F3245" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_42034B44692647A698F6895DBA9BFCB4" + "MsmKey" = "8:_6186376DC93E4147A10CEE688187DC66" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_422C98F0CDBF49AD84C6CFD67ABA6017" + "MsmKey" = "8:_61DCCED4188A44C79CE6F4A3734D9767" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_42B0DAF4C2D64377837BDEA4BAEED5FC" + "MsmKey" = "8:_622040FCFEF34424944392FB36248EFC" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4368D043170E4801BD2C39401C5946CE" + "MsmKey" = "8:_623351C6AD374B06A34FD5401A031507" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_43827AD630B446ED9182909E41D8E592" + "MsmKey" = "8:_62667E51DDAC4C82A79030A542EB7509" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_628929C01DE24A94B168933024A5D4D9" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_0ADF9758C9EA4C82A9116965FD5C824A" + "MsmKey" = "8:_62D80B9313554E00BE828FB3CBDCDF85" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_6CAF4782BEEB4150B37C0293B79F0069" + "MsmKey" = "8:_62DE6931D33543D691C050919C5EE5A6" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_B1849DE105A443F195D7510B391D0629" + "MsmKey" = "8:_630B655561194B7FA3227649900954F6" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_632E1A907456D75E4CF299805F283F0B" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_632E1A907456D75E4CF299805F283F0B" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_632E1A907456D75E4CF299805F283F0B" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_271011AD979B4CBBBC9E510C783444B0" + "MsmKey" = "8:_63371D0BAD234D5F7696EA820393E3B0" + "OwnerKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_638ED98CAD46C3F510314D5BA18F5FFA" + "MsmKey" = "8:_6410B7CD543C4AA1861A2AC1D40D5169" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" + "MsmKey" = "8:_6416F1F34F3E46AAB53DDA5D66F179B8" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_58C396CAD94644E493315C2801EC4AF5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_8620B1F0C2FA4D348B9E63F0BE9FA1ED" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_A382D02B948C4B54803DC488B33F0B3A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_32EF223E0EFB40A88EBE556C8EAA4AF3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_87840206D46747A097E4ED2B15D78CFA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_EB98E04073DF4D0A81057B1F53EC6632" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_D27991107EA14C1C8B4A246C7658161E" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_16EB40669FCA68C2E34800ABC4D81F41" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_F1D679BED009170305B2519CD78CA300" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_EABF3921F3284D87909D094D538FA526" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_BBD6FAD81E26ECE30F40C28556D906CE" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_0D1200924CA21F19FF53C62B7B8354FF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" + "OwnerKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_655FCCA1E86A4494A1245290A41E97B8" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_45E53FB27049D042E5DED373E26F270F" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_65A667BC789D01A72E116514081DB3F9" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_46257171A0414AD79483B9977E2FF868" + "MsmKey" = "8:_67415B187EDD4DB2AF1B659373386D94" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_46B776E2837B4F7CB7E1B8E912C49D00" + "MsmKey" = "8:_681A6EBA6A68461C95E7263C5490328E" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_46E2D82F69CA53E5A7535C5CEF01B095" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_195464F81556BDF6BDAF089A424D04BD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_46E2D82F69CA53E5A7535C5CEF01B095" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_46E2D82F69CA53E5A7535C5CEF01B095" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_9AF4DF764E3D402FA7B373767289455C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4727FDB58AE347C2BBB045C8D3422B9C" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_58C396CAD94644E493315C2801EC4AF5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_47A0E1EF51BB4C9DB3A056522E4E57A0" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_1359C7CA18A745EA8445F44058628957" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_FE8069F25C7542899AA4D3DA4F912B1C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_BEB7712F13CD4B2CBEA04C676E1B1CF4" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_8B7D01F246DC495996E2A46DB76D4F84" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_4D4C37D93E3B414C8FE99DBB8E48FBB6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_C17E953CE554458FA3D973414751D2CC" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_5B538E2AD9BE4EEE81436217036C9D66" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_B1849DE105A443F195D7510B391D0629" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_8B79E641FCED4F83AFC0AB850BD604D7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_866E8D70379E4EC8B625FFE1F47FD889" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_35905B61896E4B85BA1D8C0529AF72AC" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_116BD942CEE84471AD2C9816EAC500BA" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_D132FA26F719439394D7C487765D7801" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_7BEAA3F3CE3A41E1B5E7AA81B64066D9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_97E0B4AF7AF74BBEB8AE3E3019C5E916" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_F5FE62D38D5C4D30A5276F398ACE2208" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_2343DBD422AD4155ADE348A17AB95FEB" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_AD573111A7F14C01ABAD569CED96D350" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_0B2BAA3A5E604087AF901AAAD0289AD7" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_F234093989D94177BDA1899CB3899E6B" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_8A9143138F81414DAA84CA0B6AF5D476" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_95E95D512F7447DAA4C6FD50CE087AEA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_7FF631853BCE4C7080E8E8CB1DBCDCC1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_EC057A65CB2191A3A75D32D39E2C9281" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_51F4D594D73E477E856528EBC42B0F9D" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_7A5B16731EEC4355B576D7DDFCA358BF" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_7F44F5DCF7044398A8BC0D24E76B35B4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_FF838842077D44EAA2A6348E18D08E79" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_975852014F5B4FACBBDF5C881DA76681" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_BAF05666A62E4063B67A990DBB654458" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_0B60CEFE230E4633B1FD838B2E9E4D46" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_0327CD370EE34AA4A8DD54EBBF99AC9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_84381ED1D01A444DA4B139C706F80BC9" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_E6D8C4B69849495883A1497295063547" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_638ED98CAD46C3F510314D5BA18F5FFA" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_197BB23CB89E43A5B6ADC5825C6EA03C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_C8225AB4F128DD5C462799E34B2089A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_9C7BC3B28FEF0D6A3C7DF01D18722E6C" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_E74C8D77D5E37A69B6984831650003C7" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_4EB2192CC00FB0EB1C5133471260033C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_1D5335D7AACA430A8763AC84DDF08528" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_818C90D1A56563131B63B1CA3CA576F3" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_95E19BAF64801E12E1F4F108490124BD" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_9CA2658ACD8741F43E77E56D9F53DCD5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_D95667BB0BE960569CE9FD00654E9D8C" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_4CC3509F71D47443B15941CABB9FB245" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_784ACDE198073C9AECF536BBDD06E2CA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_A2ECB5B1C76C7E107370542EE58E7B69" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_C2C7C844CF816EEE05C94D4477A24455" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_0CD3F544A0F1D9D27CC36C5B7338C984" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_0E4CE33347A3FAB993941A4812B2F6B6" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_C5FBC84433A48A25627AD60ACD70CFA9" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_5B33C61F5CC73F6B67F7641FDCA19E32" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_5C8A40195D2FA713BE376F012B30D161" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_002B35A47F685C337FD43749C4416446" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_5CC8DF7128C49B8D92F54987837BE0D6" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" - "OwnerKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" + "MsmKey" = "8:_686BCF63771C834DC355237F7B3A61CC" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4987219C388E4B8ABEDB8326ED8C8D7F" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_686BCF63771C834DC355237F7B3A61CC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_49F119D04B854F66986DD884302795FE" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4A127626130436A8485B10D9D040C3F8" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_F46463168E28445994747470940851B5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4A127626130436A8485B10D9D040C3F8" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_9AF4DF764E3D402FA7B373767289455C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4A127626130436A8485B10D9D040C3F8" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_58C396CAD94644E493315C2801EC4AF5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4AA4654633338AD82BCBCF22F9E71E03" - "OwnerKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4AFB41FA8B1F44B68D25AFEB81C64A9A" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_A382D02B948C4B54803DC488B33F0B3A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4B14C5F18DE24D64A0D03625C2BE1368" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_C630F7E8EA4840BAB1B2559D71483F8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_32A789F4BBF15B847138B319652834BF" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_D8F5958646964348B09B2F5870ED1BE0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_7C38E8CFCE24417FA2A80EC4AC70D9F2" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_1CB01662D311443BA86B4C7D1C5F91BC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_C739986D38D4428AA8E16DD93CA8F2C8" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_2DC66B6B0ADA43EA9D508F2B6E62C1E8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_6E350884A4BF44159F89904F4FDF6D50" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_6EEF588F24794BD699D2C5F6A0670472" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_BC55DE2D96EE4BE7B63A10E87BA44D07" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_4E05FFBA65CF4791A30C1FA9F5B7C8C5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_8DA7C6C81DDC4F94A07D257BE53DF8B3" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_655FCCA1E86A4494A1245290A41E97B8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_0ADF9758C9EA4C82A9116965FD5C824A" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_55F9FC11F41F4C3EBF98220500974FBF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_BDE87E6E1B7A4905A9CEB9E5C03878BE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_9CB339FE4F29483BBFC63B8DAA58487C" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_0368786955D94604AC394EEB6424743F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_C5B0AE74BFAE45BA893232F4A15B6C27" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_48FEC7295A1F49AFA9658B28040D82D0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_7DA9550944E242C8B9D670E9FE8EE460" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_1359C7CA18A745EA8445F44058628957" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_8B7D01F246DC495996E2A46DB76D4F84" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_C17E953CE554458FA3D973414751D2CC" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_4D4C37D93E3B414C8FE99DBB8E48FBB6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_B6288F8D68A9416A92DC90E280B06EA2" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_5B538E2AD9BE4EEE81436217036C9D66" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_079009E7E5124031B6204AAC7FF67A9A" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_ABF50DEAD3F44E68B097345106E563D8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_2CA572F0801641B0A319B8A36405E97C" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_7A58EB8E4D024E9ABEEF4643AD40C308" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_DB6DA2D86C6F4DC68545755D67200523" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_6AD6EEB4586A4ACF9B3E9F11A6F644DC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_70F8B2B0578A45A09CEC90DCB99959D2" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_716F98D87D6841DC8B6B346A171CE780" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_63671CEDA4AA460FA5689EBD8101E817" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_EE657F070AC54DDCBA5CD56C53F3FFDC" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_6CAF4782BEEB4150B37C0293B79F0069" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_A6339429BB9B4B8993C3D9BB29ED86EE" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_8A48519D23634D2F9EC22ECF0A14A3CC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_1797384676994F4A8D20EA3733C18E0C" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_8146F9A2DB6A4D498ED4A46C80ECC662" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_75FE1351602A4F8E85CB6F9A14FCFF09" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_7BEAA3F3CE3A41E1B5E7AA81B64066D9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_B1849DE105A443F195D7510B391D0629" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_B02AC42471634FDDB8675ACE5C4A140D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_D132FA26F719439394D7C487765D7801" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_32EF223E0EFB40A88EBE556C8EAA4AF3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_F62AEFC871D44831804BCD4DF25C23F0" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_B873BE40B7AA4D4FACE3565666F45F51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_0E68B1E82AAD49399267ACAB562EC6F5" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_F5FE62D38D5C4D30A5276F398ACE2208" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_67B28C0C25A549578A5E328EA971DE36" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_0205F5D1886848139710911DD96B405B" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_7776F0B3F25D4F958A79A3B702D72900" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_0780B22F54AB492BB65CAEE79E2A59BA" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_AD573111A7F14C01ABAD569CED96D350" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_E9B8002F9879403F994F719F640BFF20" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_87840206D46747A097E4ED2B15D78CFA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_78876DFFB8F54757A7E7CD5F6937D821" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_6E83BDD242CD403E88C6174D59C0F7D4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_EB98E04073DF4D0A81057B1F53EC6632" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_3F7F9B04DCFE498FB90F10FD533E50C8" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_51F4D594D73E477E856528EBC42B0F9D" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_7A5B16731EEC4355B576D7DDFCA358BF" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_BB2F0804317E40959BC54397F062E63F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_271011AD979B4CBBBC9E510C783444B0" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_CD8824E528414EBDA5DCE3BA0A9528F8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_FC262487CAE543089CB587C8166C581E" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_81776EE3B0D14F098DEF71346C834416" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_99C527251870413C95F2B9A8CF693728" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_95E95D512F7447DAA4C6FD50CE087AEA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_FF838842077D44EAA2A6348E18D08E79" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_DB755541B20243BDB9467F3470981BC4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_B13A099F228149CDB35ED8B4D88ACEDE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_0B60CEFE230E4633B1FD838B2E9E4D46" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_6DC1F90252234DA7B2C1EF13DF9104ED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_84D1E150F94A4734AF69639266E603A9" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_681A6EBA6A68461C95E7263C5490328E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_55842097A1B740A79E6644F235B0C1AF" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_A5C386CA7E4D475C8869A687EBEF8A04" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_A8F6731403774C40A8E480A587DFE9C2" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_8988F38293E6443C82ED10D12481699D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_8446B116F7184398BD545B60AFF3FC46" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_532344DBAAF142C2AFF7F262E5522497" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_9950BFEA0E494DFDBF222F8D162723FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_EC057A65CB2191A3A75D32D39E2C9281" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_9B2EFE50DAD1458E8932CCF4310BEC9F" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_975852014F5B4FACBBDF5C881DA76681" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_E129F749CD8340D59FB77411E5B5DD52" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_BAF05666A62E4063B67A990DBB654458" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_3B72D4DBB2DB48BFAD0801684500E08D" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_0327CD370EE34AA4A8DD54EBBF99AC9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_BD0C134F8B3D461082A684578110A12C" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_DA87F4E078FD438E9CBA27D5FD4B0543" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_95FA2F22712340978792F943907E95B4" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_16758E102315420CAF07169A47EF16A8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_E0DD91B6820043019824432F3CCAC570" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_88469FDDED8C4BF399DB4ABD4605D307" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_E8309CE031A84E3BB0C7AEA48E019E22" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_84381ED1D01A444DA4B139C706F80BC9" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_ACC9D7826CBE472A8766CAF892A6B8A9" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_E6D8C4B69849495883A1497295063547" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_B2011D514CF04C259ABAA54E70395610" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_736EDDDBC3584E7A83D01BE2C66DBF5B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_BFCE0B7A76304ACAA2D84D64CE0EC7AB" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_9C4BE12B0CD74B7CBBD18F04CB7C4D82" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_1947F3829A764DD2A928A23101DE2206" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_6B2518E99F2845ADBCCEC065B7A24A9F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_57C31C2439A34DC987398DE7F6C5B1E6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_638ED98CAD46C3F510314D5BA18F5FFA" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_197BB23CB89E43A5B6ADC5825C6EA03C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_8D916F703BFB47DEB61E0FF69D9F6189" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_2E3DA24B734E4A11A8D0E0753635C7AE" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_AAD83CEDDDC54AAFB0655F23A6225024" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_1F07CC99CC9947599D83707F1D15766A" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_73D3FD7993624E07B5E561B11755AC2B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_9F396770E1B644CA889B7ED6A58E40DA" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_CE6D89188B1C43438BB2A2F8F3334887" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_5B3E026DD33A40C1A7EDC39A74BF1FA1" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_16EB40669FCA68C2E34800ABC4D81F41" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_9818F96B07084AA4B619A0A41EE9C6B5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_A73B77AB52A14A06924029907A4E19B1" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_999A55ECDBA24B00AEE2A5A207F8030D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_DF914A3690054B6CB9B7658ACB9DE4BF" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_DD98189F70C149948FEBEDB7FFD024BB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_8620B1F0C2FA4D348B9E63F0BE9FA1ED" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_515A8CFB844E4B618CB13EC19A0FE75C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_EE89A54BD17940D98397488D356F8725" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_AF2FD3529ACE48B6A5497A6197A020AA" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_F05C2A6ABC3663BA3E2F3CF0A8A61AF0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_14D46FEB93FA4D299E6056B1E348312F" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_EABF3921F3284D87909D094D538FA526" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_6979A6B680CB47C7A69BE7860AF298F6" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_BE5D2C19D8FE4FA1BDF8F4B535872332" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_DCED769F3CED40F68BBF793A3190390F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_E74C8D77D5E37A69B6984831650003C7" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_FC1B3053EE004D9CA842FE7ACAB59109" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_F2BF868F37FD4EBB9EEE93828F6B8B80" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_D3B9100D444743C5A5B2BEADE3C79799" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_FEEDC4F58B6148F79B34BCD14DEF1B1B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_1393BDC59A6B4C81B84D5C2C618156EF" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_C9119A99605F402ABE71C62A7381323B" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_504E92556FF74DC6857BCBBB97FB7EB8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_3B678EA0E9FA4D20B7D90D75DCAF300C" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_89C50D3BE2F9490EBB5D778B96C32C9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_F6BAAF5364A4477F8AB5AC0EC2E90C05" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_F8B53535DABD4E7D5E5951C921AC682A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_80443D2C922030B6CD68CCA745F0E5B1" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_4EB2192CC00FB0EB1C5133471260033C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_25E58EB806A4EC8427C4EB8A218A5087" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_7B84FC380764415ABB407E76018A6C1F" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_3F7191903485AE336DDBE8F265888B67" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_D61738826E13F256E5D5365099EA0D68" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_CDC750ABB7DA4D5BB101583406E8DB9E" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_8765771DDE4A840EC489FFEEE5E7780A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_243FEEBC941A41DD9C5F736248AFD819" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_AA98FEAE530E800F83819D70C36CAF58" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_0AD2B80BD2AC492DB97EE4C5ED1BF5F8" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_3101F9AFF87F4586C5C12A29FB502D79" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_53C949C71D0F422B8978AD416438B086" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_4BC9CD649C175DEADD4B1DEEC6E3E6A0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_0912E1C1C1F24DDCA531C6864D1665A8" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_D27991107EA14C1C8B4A246C7658161E" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_46364AC2527B05575C1A7DC2C4A003FE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_E0A90872657427483F053288CC41F7BF" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_06032F260A8DEC8FFD196041FDAD9A14" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_A76A17A95231B9F651C86B8747D361A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_818C90D1A56563131B63B1CA3CA576F3" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_5BFFFF7FD7100CE916F389F8186B56E4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_8A42A9274EFB189CCEE03074E79EB5DC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_385E4C4F5EED8818E2DF6396C14184B2" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_60307A9582FE2D7618125043293A02AB" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_80FAF08BE91DC1EC96DC613154D44F7E" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_887286F4C29C1F45FAF43D3E3165DD9B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_D4EC43B9F9144598017136DE430174D9" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_9CA2658ACD8741F43E77E56D9F53DCD5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_C11E19B0EB4B8A1E84235A23B46ABD98" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_F9D45EB45753FAD80DFD1C6F7ADF3844" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_A2C4BBDA6C653F878CF9F09DDB19EB67" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_0D1200924CA21F19FF53C62B7B8354FF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_5A3B9691BBA0905D20072B75D246E43D" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_7A001E5060F007B76553095966B3DD3A" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_F209B5DB23FDBB924E78243E39A49B2D" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_A0CAEAFA8AF476AE9779326B71CAD208" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_5193F4E9C8FD027F6DA8742BC80C4D34" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_F1D679BED009170305B2519CD78CA300" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_784ACDE198073C9AECF536BBDD06E2CA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_3AF27C2F3C6F5550735A7366B1261EFF" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_C3EDD553A32A0F38069B9AC4058185CA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_DE4CD1E105AF4B87366D07C46F4C2663" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_588842B28A75F1BD35C5CDDBB0F123D6" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_792C41CB6C66CA56AB56A89516AF727F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_5B33C61F5CC73F6B67F7641FDCA19E32" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_234A61A2BB88F06DD30B16DE9F66E565" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_BBD6FAD81E26ECE30F40C28556D906CE" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_71DB4173D0A1DE774C90437928F85735" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_13C0B21BEF168B0190E20DD315BFA3E0" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_BA6689085C8CEBFE45F4F582C7CA6BE7" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_18F64B11FA2B3AF2FD7BC1EBF31D85A4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_002B35A47F685C337FD43749C4416446" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_AE2D7B02724DDA7F2129EFCC431086A2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_214C0A61A7B4A26FDBEB0788B62D0089" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_D142F4C5A6246588440689DF4036E8F2" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_5CC8DF7128C49B8D92F54987837BE0D6" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_5C8A40195D2FA713BE376F012B30D161" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_13B3F1052A56A2AA76DB87CEE3FDEE7A" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_BB9997D921573F9889C5EB78392A5460" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_1227F5127E12287474AC428519CF1F5A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_AC9B28E0D99E4F1F515BA0BBE9459CE5" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_3A63E9B6336859FB898A1207E36A64D2" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_0D7CAA399994014550D649BDB391BF30" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_779089C4535D1F4BE27BCFA5629CC6B4" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_3032BD5A329D929A96C6738327C6631A" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_A4134201B9E55E9C7D6CC50C10CFE337" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_5DECA8430E15A27DB07E2F19865BE42D" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_195464F81556BDF6BDAF089A424D04BD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" + "MsmKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" + "OwnerKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_8BB9413DD232277D8EC384477B23E618" + "MsmKey" = "8:_697B50CE235447299497D237412C4DCD" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" + "MsmKey" = "8:_698CED33DF4A4DBAAA41483975BE2F8D" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_69AB1DD380134079B4877AC8EA430A2D" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_45E53FB27049D042E5DED373E26F270F" + "MsmKey" = "8:_6AD6EEB4586A4ACF9B3E9F11A6F644DC" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" + "MsmKey" = "8:_6AE632079F394BD3BD1D95910CCD9D25" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" + "MsmKey" = "8:_6B2518E99F2845ADBCCEC065B7A24A9F" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_5F082BC1113FF660F20E98CE2AC3095D" + "MsmKey" = "8:_6B859A7BC8A14F42B491894F7EC47F04" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_86A788B950814C0859DE3243B664552F" + "MsmKey" = "8:_6BB78274ACF04F54AFA5791C2727C6BA" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" + "MsmKey" = "8:_6CF80A72B1AA427F859E25B422E8FB82" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" + "MsmKey" = "8:_6D02466658184C1EB776E0F595862B1C" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_82A07788C4F0390092FA707DCB5CA209" + "MsmKey" = "8:_6D1A9B163ABF4B5BAAAF60ABA6C0ABE2" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_0D402C75C4105E49FA08F1F21522121B" + "MsmKey" = "8:_6DC1F90252234DA7B2C1EF13DF9104ED" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" + "MsmKey" = "8:_6E83BDD242CD403E88C6174D59C0F7D4" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" - "OwnerKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" + "MsmKey" = "8:_6E858C1B43B264FBD4E33E5728B8DEC4" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CC3509F71D47443B15941CABB9FB245" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_6E858C1B43B264FBD4E33E5728B8DEC4" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CC3509F71D47443B15941CABB9FB245" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_6E858C1B43B264FBD4E33E5728B8DEC4" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CC3509F71D47443B15941CABB9FB245" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_6E87DC1BEC0448928C102F9DD6DA2A3A" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4CDD7E2403B046F7AE083ED1B9653A92" + "MsmKey" = "8:_6EEF588F24794BD699D2C5F6A0670472" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4D439AE642BD42B88299558FBF3E2817" + "MsmKey" = "8:_6F56D84C89834F49BF3F9869A9EE6C21" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4DFC695831944FBBA7AC0DE65E7FC634" + "MsmKey" = "8:_6F6DC417B88740A88ECFE1DCCF7B668C" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4E68D8E505060343C9C98DD4F77B2A9C" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_6FAE27D054224ED49E85B323757871AF" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4E68D8E505060343C9C98DD4F77B2A9C" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_700D765813FB453FF69B8805E111B1C4" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4E68D8E505060343C9C98DD4F77B2A9C" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_700D765813FB453FF69B8805E111B1C4" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4FCB833B11C64C0D85C46B127B6B1116" + "MsmKey" = "8:_7022B68B425F41DD82B3A2A120BCBDBE" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" + "MsmKey" = "8:_7074B3764DF24B388A81F8E9C202DC9C" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_70ED8AD69F00771AC685626BF42151F9" + "OwnerKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_271011AD979B4CBBBC9E510C783444B0" + "MsmKey" = "8:_716F98D87D6841DC8B6B346A171CE780" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_99C527251870413C95F2B9A8CF693728" + "MsmKey" = "8:_71DB4173D0A1DE774C90437928F85735" + "OwnerKey" = "8:_9CF01A79ADC6DB936EE336401703AAA4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" + "MsmKey" = "8:_71DB4173D0A1DE774C90437928F85735" + "OwnerKey" = "8:_40D4803D1BCB496489B81B9239B44CC9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_0B60CEFE230E4633B1FD838B2E9E4D46" + "MsmKey" = "8:_71DB4173D0A1DE774C90437928F85735" + "OwnerKey" = "8:_E43B59AB67864BD0944C88D3E25021E7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_55842097A1B740A79E6644F235B0C1AF" + "MsmKey" = "8:_71DB4173D0A1DE774C90437928F85735" + "OwnerKey" = "8:_9404A6EA40F4A7894ED3D517521AF25C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_72E01BBE8FF147988DB5612281B42645" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_730CEE37D78449FC89EBFC526A39C7D1" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_736EDDDBC3584E7A83D01BE2C66DBF5B" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_73D3FD7993624E07B5E561B11755AC2B" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_745EED586EE63238193F683885BBD029" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_745EED586EE63238193F683885BBD029" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_745EED586EE63238193F683885BBD029" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_745EED586EE63238193F683885BBD029" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_BBD6FAD81E26ECE30F40C28556D906CE" + "MsmKey" = "8:_745EED586EE63238193F683885BBD029" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_BA6689085C8CEBFE45F4F582C7CA6BE7" + "MsmKey" = "8:_74C989C8B18A40A885321F7F8188A83A" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" + "OwnerKey" = "8:_21E68C1A94E92853B17A098E208A63D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_002B35A47F685C337FD43749C4416446" + "MsmKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" + "OwnerKey" = "8:_DBB40A1C41C34EFFA1F4D9EDD04CA79D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" + "MsmKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50AA9E5F36F34BE58C0500BCD3665E0A" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" + "OwnerKey" = "8:_89C50D3BE2F9490EBB5D778B96C32C9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_50B768B640B54F9C87DE06C489CA91BE" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_513F47F07D3B44E7BCCD46CFDC2A729A" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_51C4B66AB9DF4631B45CE94538C8AD11" + "MsmKey" = "8:_74F88C795ADA41838494938B37ACB05E" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_51CCC9AC96B14C59B08BCD4ABF521989" + "MsmKey" = "8:_751F5E62B3CB4E8E8408ED7894BD77DB" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_51F415BDB36E45D0A4BD1F1EE34F9523" + "MsmKey" = "8:_76060290214147F1808CF4DF19B364E0" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_51F4D594D73E477E856528EBC42B0F9D" + "MsmKey" = "8:_76B7C52A3F814FAD80D2B109704AC016" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5202A9413E934ED6AFD77B094AB486D9" + "MsmKey" = "8:_7741A8335D6344BFB4473EE8456BA323" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_52DBD1213F3347B397FF02C837E70E3D" + "MsmKey" = "8:_7760628DDCA7449AB05277621908368D" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_53C949C71D0F422B8978AD416438B086" + "MsmKey" = "8:_7776F0B3F25D4F958A79A3B702D72900" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" - "OwnerKey" = "8:_64563FACCCB9F211605BD1F9E5E8CB12" + "MsmKey" = "8:_777D66705D8B49A0AA649B76F14CDC63" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" - "OwnerKey" = "8:_67B28C0C25A549578A5E328EA971DE36" + "MsmKey" = "8:_784ACDE198073C9AECF536BBDD06E2CA" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" - "OwnerKey" = "8:_17760E146DF74573A3BDC64BB120A84A" + "MsmKey" = "8:_784ACDE198073C9AECF536BBDD06E2CA" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_784ACDE198073C9AECF536BBDD06E2CA" + "OwnerKey" = "8:_CB7900C58EB6431199E974BDC44043FC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" - "OwnerKey" = "8:_1947F3829A764DD2A928A23101DE2206" + "MsmKey" = "8:_784ACDE198073C9AECF536BBDD06E2CA" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" - "OwnerKey" = "8:_82A6CF9F4FD84C679D36AEEDBB1FCE86" + "MsmKey" = "8:_784ACDE198073C9AECF536BBDD06E2CA" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_784ACDE198073C9AECF536BBDD06E2CA" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" - "OwnerKey" = "8:_80443D2C922030B6CD68CCA745F0E5B1" + "MsmKey" = "8:_784ACDE198073C9AECF536BBDD06E2CA" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_784ACDE198073C9AECF536BBDD06E2CA" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_784ACDE198073C9AECF536BBDD06E2CA" + "OwnerKey" = "8:_632E1A907456D75E4CF299805F283F0B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" - "OwnerKey" = "8:_EDA76A729DD4307C7627100FBBAE26ED" + "MsmKey" = "8:_78876DFFB8F54757A7E7CD5F6937D821" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_550899349AF445AFB2CA10B0FBD96D87" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_791F7F6F4B02DF11734DF494ED085D71" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_55842097A1B740A79E6644F235B0C1AF" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_791F7F6F4B02DF11734DF494ED085D71" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5735053D84994EFCB7E1065BC1CAB45B" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_791F7F6F4B02DF11734DF494ED085D71" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5744E08CC8864EE98D3F0F279C96FC95" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_791F7F6F4B02DF11734DF494ED085D71" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_575A4036805E4C2489F6706A5C20D3E9" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_791F7F6F4B02DF11734DF494ED085D71" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_57D15A45939740A0ACB702A40DCE5CA0" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_791F7F6F4B02DF11734DF494ED085D71" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_57EAA6DC10DDCE02971C5049BFAF54A3" - "OwnerKey" = "8:_32BC4BF42CC040299C37E6C214492928" + "MsmKey" = "8:_791F7F6F4B02DF11734DF494ED085D71" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_57EAA6DC10DDCE02971C5049BFAF54A3" - "OwnerKey" = "8:_78718FB568EC5F0FBD61D8EA7614AC2C" + "MsmKey" = "8:_791F7F6F4B02DF11734DF494ED085D71" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5801281F80DB41C8AA12AAC9A21BBF9E" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_791F7F6F4B02DF11734DF494ED085D71" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_791F7F6F4B02DF11734DF494ED085D71" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_19FE79ED86B14135BF9ABBC86A76C182" + "MsmKey" = "8:_791F7F6F4B02DF11734DF494ED085D71" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_6CAF4782BEEB4150B37C0293B79F0069" + "MsmKey" = "8:_792C41CB6C66CA56AB56A89516AF727F" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_0780B22F54AB492BB65CAEE79E2A59BA" + "MsmKey" = "8:_792C41CB6C66CA56AB56A89516AF727F" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_792C41CB6C66CA56AB56A89516AF727F" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_792C41CB6C66CA56AB56A89516AF727F" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_792C41CB6C66CA56AB56A89516AF727F" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_792C41CB6C66CA56AB56A89516AF727F" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_792C41CB6C66CA56AB56A89516AF727F" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_CAB5C2A388B34D1F874E72AC38354BFA" + "MsmKey" = "8:_792C41CB6C66CA56AB56A89516AF727F" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_792C41CB6C66CA56AB56A89516AF727F" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_9AA9B1640404D837BA8E590A2A7B3FDE" + "MsmKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" + "MsmKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" + "OwnerKey" = "8:_919881645AD445A2BBCB559AB16FC898" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_588842B28A75F1BD35C5CDDBB0F123D6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_584488BE0E5B42448B64AEB8295E6216" + "MsmKey" = "8:_79B4DD4657554A8B9BE6072267D33839" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_588842B28A75F1BD35C5CDDBB0F123D6" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_588842B28A75F1BD35C5CDDBB0F123D6" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_7A58EB8E4D024E9ABEEF4643AD40C308" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_588842B28A75F1BD35C5CDDBB0F123D6" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_7A84333992BE4051A17655C8A326279A" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_588842B28A75F1BD35C5CDDBB0F123D6" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_7AC9D958070F4B42A75DCF786D3E4051" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_588842B28A75F1BD35C5CDDBB0F123D6" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_7B069A9B1491433AA37919DB79E1CF40" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_59AD0C55DE794E3594215CCA3509CFA7" + "MsmKey" = "8:_7BEAA3F3CE3A41E1B5E7AA81B64066D9" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_59E9FDC913F34D1FA5C8E2F066ABD4C6" + "MsmKey" = "8:_7C5310AB7C9646AFBD00BF49A0DD99E5" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5A3B9691BBA0905D20072B75D246E43D" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_7C840CCB2F2C1EA4816FE487B5E752DD" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5A3B9691BBA0905D20072B75D246E43D" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_7C840CCB2F2C1EA4816FE487B5E752DD" + "OwnerKey" = "8:_55EFD5C9477B4C7EA11F78E3928B0DC7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5A3B9691BBA0905D20072B75D246E43D" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_7C840CCB2F2C1EA4816FE487B5E752DD" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5A3B9691BBA0905D20072B75D246E43D" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_7C840CCB2F2C1EA4816FE487B5E752DD" + "OwnerKey" = "8:_1EF904821BA64F522142ACB4C8E61033" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5A3B9691BBA0905D20072B75D246E43D" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_7DCD3B5302DC405B8A2643511ACC5403" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5A3B9691BBA0905D20072B75D246E43D" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_7EA003AA5FED4C9D9C5BD3195F71DD3D" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5B31A4E8F126425BA1A42D99C31B8454" + "MsmKey" = "8:_7EBB599986E44153ADD9E12201E1951B" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5B33C61F5CC73F6B67F7641FDCA19E32" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_41166B47E9DED0CCB5B576735A417525" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5B33C61F5CC73F6B67F7641FDCA19E32" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5B33C61F5CC73F6B67F7641FDCA19E32" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_D8F5958646964348B09B2F5870ED1BE0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5B33C61F5CC73F6B67F7641FDCA19E32" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_1CB01662D311443BA86B4C7D1C5F91BC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5B33C61F5CC73F6B67F7641FDCA19E32" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_2DC66B6B0ADA43EA9D508F2B6E62C1E8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5B3E026DD33A40C1A7EDC39A74BF1FA1" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_6EEF588F24794BD699D2C5F6A0670472" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5B470822B6EA4B47B25809D8F8B2623B" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_655FCCA1E86A4494A1245290A41E97B8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5B4C60C6EEFA40C7B393BB1299DF2536" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_55F9FC11F41F4C3EBF98220500974FBF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5B6F8058482CBAB6EDE2388612B42198" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_4D4C37D93E3B414C8FE99DBB8E48FBB6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5B6F8058482CBAB6EDE2388612B42198" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_8B79E641FCED4F83AFC0AB850BD604D7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5B852E420FAF4CC99F72BCEC55D0342E" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_A03E7BC3D09F4E36BCFAFE25E18348EC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5B9E3DEC263DB384D2E4044422BBD36F" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_ABF50DEAD3F44E68B097345106E563D8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5B9E3DEC263DB384D2E4044422BBD36F" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5B9E3DEC263DB384D2E4044422BBD36F" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5B9E3DEC263DB384D2E4044422BBD36F" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_F5FE62D38D5C4D30A5276F398ACE2208" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5B9E3DEC263DB384D2E4044422BBD36F" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5C2FC8A37C274E7BB533C6F20E4E42B5" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_7776F0B3F25D4F958A79A3B702D72900" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5C7248F3FB9C4BC08BC60F647CF92413" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5CBF95F1E41B470A8B930A9DBE8F1356" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_BB2F0804317E40959BC54397F062E63F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5CC8DF7128C49B8D92F54987837BE0D6" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_BAF05666A62E4063B67A990DBB654458" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5CC8DF7128C49B8D92F54987837BE0D6" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_16758E102315420CAF07169A47EF16A8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5CC8DF7128C49B8D92F54987837BE0D6" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5CC8DF7128C49B8D92F54987837BE0D6" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5CC8DF7128C49B8D92F54987837BE0D6" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_9C4BE12B0CD74B7CBBD18F04CB7C4D82" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5CC8DF7128C49B8D92F54987837BE0D6" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_73D3FD7993624E07B5E561B11755AC2B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5D01B927B9EF45109391F9A863CC0564" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_CE6D89188B1C43438BB2A2F8F3334887" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5D2A8D17730443A78B5C1B404BCB0FFF" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5D7C213BB876991F90D99766421A9C5B" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_9818F96B07084AA4B619A0A41EE9C6B5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5D7C213BB876991F90D99766421A9C5B" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_999A55ECDBA24B00AEE2A5A207F8030D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5D7C213BB876991F90D99766421A9C5B" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_DD98189F70C149948FEBEDB7FFD024BB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5DECA8430E15A27DB07E2F19865BE42D" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_515A8CFB844E4B618CB13EC19A0FE75C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5DECA8430E15A27DB07E2F19865BE42D" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5DECA8430E15A27DB07E2F19865BE42D" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5DECA8430E15A27DB07E2F19865BE42D" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_FC1B3053EE004D9CA842FE7ACAB59109" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5DECA8430E15A27DB07E2F19865BE42D" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_F2BF868F37FD4EBB9EEE93828F6B8B80" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5DECA8430E15A27DB07E2F19865BE42D" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_D147A209D52B47799F51651D4069C15E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5DECA8430E15A27DB07E2F19865BE42D" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_FEEDC4F58B6148F79B34BCD14DEF1B1B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5EB9F74BDD76465C91F7EDBCFEE088CB" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5F082BC1113FF660F20E98CE2AC3095D" - "OwnerKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_504E92556FF74DC6857BCBBB97FB7EB8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5F082BC1113FF660F20E98CE2AC3095D" - "OwnerKey" = "8:_F62AEFC871D44831804BCD4DF25C23F0" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5F082BC1113FF660F20E98CE2AC3095D" - "OwnerKey" = "8:_0205F5D1886848139710911DD96B405B" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_3F7191903485AE336DDBE8F265888B67" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5F082BC1113FF660F20E98CE2AC3095D" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_D61738826E13F256E5D5365099EA0D68" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5F082BC1113FF660F20E98CE2AC3095D" - "OwnerKey" = "8:_2E3DA24B734E4A11A8D0E0753635C7AE" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_8765771DDE4A840EC489FFEEE5E7780A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5F082BC1113FF660F20E98CE2AC3095D" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_A9035D942941788E21A775971D3379AD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5F082BC1113FF660F20E98CE2AC3095D" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_3101F9AFF87F4586C5C12A29FB502D79" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5F082BC1113FF660F20E98CE2AC3095D" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5F082BC1113FF660F20E98CE2AC3095D" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_5BFFFF7FD7100CE916F389F8186B56E4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5F082BC1113FF660F20E98CE2AC3095D" - "OwnerKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5F651DF451624464BE927B73A1884CFA" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_8A42A9274EFB189CCEE03074E79EB5DC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5F8961CAF53A17A41F9EE6D7C710F30B" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5F8961CAF53A17A41F9EE6D7C710F30B" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_5F8961CAF53A17A41F9EE6D7C710F30B" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_5193F4E9C8FD027F6DA8742BC80C4D34" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_60307A9582FE2D7618125043293A02AB" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_792C41CB6C66CA56AB56A89516AF727F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_60307A9582FE2D7618125043293A02AB" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_605BE8A0427948D6B90C492E1BD29A76" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_18F64B11FA2B3AF2FD7BC1EBF31D85A4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_60641ED74ECC45E8BDC4D259BA609E5F" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_61849C8C6915542843CBD31931EA4B7D" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_61849C8C6915542843CBD31931EA4B7D" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_61849C8C6915542843CBD31931EA4B7D" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_5C8A40195D2FA713BE376F012B30D161" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_61D9ECBCAA771C3A8BAE2222F36AD38F" - "OwnerKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_0D7CAA399994014550D649BDB391BF30" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_61D9ECBCAA771C3A8BAE2222F36AD38F" - "OwnerKey" = "8:_7A28B079B11A4E5DAC6934D4636D9DF1" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_61D9ECBCAA771C3A8BAE2222F36AD38F" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_61D9ECBCAA771C3A8BAE2222F36AD38F" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6257F8A9A74A453984E407D6CB916AF5" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6282EB57E48E4B60B7E78BE071F15267" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_7F210359DC9E62075F674C1B0050A471" + "OwnerKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_62A01E8AE5354288B3F280DB3F18CDF1" + "MsmKey" = "8:_7F44F5DCF7044398A8BC0D24E76B35B4" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_62E2EB85757ECD521EFB47ED25F86AEC" - "OwnerKey" = "8:_5B6F8058482CBAB6EDE2388612B42198" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_62E2EB85757ECD521EFB47ED25F86AEC" - "OwnerKey" = "8:_79CFE04F74314C5AAA631C8A6835BA7E" + "MsmKey" = "8:_7F69B08CF92C49C49E4AC79DDB3C1A9C" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_62E2EB85757ECD521EFB47ED25F86AEC" - "OwnerKey" = "8:_311C9D1D07FB4B038396A7DB0015BAF1" + "MsmKey" = "8:_7FA12247CFA9C7A384CE9D1B345A93E5" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_62E2EB85757ECD521EFB47ED25F86AEC" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_7FA12247CFA9C7A384CE9D1B345A93E5" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_62E2EB85757ECD521EFB47ED25F86AEC" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_7FA12247CFA9C7A384CE9D1B345A93E5" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_63671CEDA4AA460FA5689EBD8101E817" + "MsmKey" = "8:_7FF631853BCE4C7080E8E8CB1DBCDCC1" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_636D2B8A50DD0086FBFCBE22585C8272" - "OwnerKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_636D2B8A50DD0086FBFCBE22585C8272" - "OwnerKey" = "8:_A6339429BB9B4B8993C3D9BB29ED86EE" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_636D2B8A50DD0086FBFCBE22585C8272" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_655FCCA1E86A4494A1245290A41E97B8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_636D2B8A50DD0086FBFCBE22585C8272" - "OwnerKey" = "8:_51F4D594D73E477E856528EBC42B0F9D" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_55F9FC11F41F4C3EBF98220500974FBF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_636D2B8A50DD0086FBFCBE22585C8272" - "OwnerKey" = "8:_C7B8B31323F147A19100C0D701B4101C" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_6AD6EEB4586A4ACF9B3E9F11A6F644DC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_636D2B8A50DD0086FBFCBE22585C8272" - "OwnerKey" = "8:_DECDF56F984E473E92323CACE22A1C1C" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_636D2B8A50DD0086FBFCBE22585C8272" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_636D2B8A50DD0086FBFCBE22585C8272" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_636D2B8A50DD0086FBFCBE22585C8272" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_CD8824E528414EBDA5DCE3BA0A9528F8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_636D2B8A50DD0086FBFCBE22585C8272" - "OwnerKey" = "8:_7A001E5060F007B76553095966B3DD3A" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_636D2B8A50DD0086FBFCBE22585C8272" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_636D2B8A50DD0086FBFCBE22585C8272" - "OwnerKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_636D2B8A50DD0086FBFCBE22585C8272" - "OwnerKey" = "8:_B28C76E809A91245E9FA657909D423F4" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_636F9E41617E45019ACB3A820A95DA38" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_638ED98CAD46C3F510314D5BA18F5FFA" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_638ED98CAD46C3F510314D5BA18F5FFA" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_638ED98CAD46C3F510314D5BA18F5FFA" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_887286F4C29C1F45FAF43D3E3165DD9B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_64563FACCCB9F211605BD1F9E5E8CB12" - "OwnerKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_64563FACCCB9F211605BD1F9E5E8CB12" - "OwnerKey" = "8:_0780B22F54AB492BB65CAEE79E2A59BA" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_64563FACCCB9F211605BD1F9E5E8CB12" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_64563FACCCB9F211605BD1F9E5E8CB12" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_8146F9A2DB6A4D498ED4A46C80ECC662" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_64563FACCCB9F211605BD1F9E5E8CB12" - "OwnerKey" = "8:_E129F749CD8340D59FB77411E5B5DD52" + "MsmKey" = "8:_815241ADB1F91E73543454427C08153B" + "OwnerKey" = "8:_6CF80A72B1AA427F859E25B422E8FB82" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_64563FACCCB9F211605BD1F9E5E8CB12" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_815241ADB1F91E73543454427C08153B" + "OwnerKey" = "8:_FB2362D3B56C02E660BBD18DFDAD9323" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_64563FACCCB9F211605BD1F9E5E8CB12" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_81776EE3B0D14F098DEF71346C834416" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_64563FACCCB9F211605BD1F9E5E8CB12" - "OwnerKey" = "8:_0912E1C1C1F24DDCA531C6864D1665A8" + "MsmKey" = "8:_81AFEF9F03D8489B9EE1A8622DAE3A35" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_64563FACCCB9F211605BD1F9E5E8CB12" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_8285DC333F7A4C1487CD04AD46B1FFC2" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_64563FACCCB9F211605BD1F9E5E8CB12" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_845D79FA2EB84633B533058C2714CDA3" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_64563FACCCB9F211605BD1F9E5E8CB12" - "OwnerKey" = "8:_588842B28A75F1BD35C5CDDBB0F123D6" + "MsmKey" = "8:_846C48CA0D30791957B414299D783B4D" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_64563FACCCB9F211605BD1F9E5E8CB12" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_846C48CA0D30791957B414299D783B4D" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_646ABC94C93542C981FA5D5E3655E115" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_846C48CA0D30791957B414299D783B4D" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_662DDF5FFF6E4291BAD4AD77A2B4B419" + "MsmKey" = "8:_84E6645587CD46C985603D661E800251" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_67B28C0C25A549578A5E328EA971DE36" + "MsmKey" = "8:_857B24DE530E4664BD4A08781529B3FE" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_68016F2B9C69414E9FE45AEEB2B7E91B" + "MsmKey" = "8:_85942F49F26E4FE7812F87592427749B" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8765771DDE4A840EC489FFEEE5E7780A" + "OwnerKey" = "8:_3F7191903485AE336DDBE8F265888B67" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_68B207B0C15748148CE9433956D9DF10" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8765771DDE4A840EC489FFEEE5E7780A" + "OwnerKey" = "8:_FEEDC4F58B6148F79B34BCD14DEF1B1B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_69642BE489D343598ACB8099F7E9633E" + "MsmKey" = "8:_87840206D46747A097E4ED2B15D78CFA" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6979A6B680CB47C7A69BE7860AF298F6" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_87BB8990111D99E1991964B5E9453719" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6AE4FDCA783348D8844575781D017F0F" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_87BB8990111D99E1991964B5E9453719" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6B59D77837404D169557D13FAF9B8F58" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_87BB8990111D99E1991964B5E9453719" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6B5A0AFB7F264633B350EED803AD6048" + "MsmKey" = "8:_88469FDDED8C4BF399DB4ABD4605D307" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6B8C88C0644E4A15BB71AD09F48EF762" + "MsmKey" = "8:_8855F5D542A04033AE1FCAC6E7CB6389" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6BCECE9BC64B4AEE8F0E18CAABE2F48A" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_887286F4C29C1F45FAF43D3E3165DD9B" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6C0CBD25EBD14EFC95FAB07EFC89A279" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_887286F4C29C1F45FAF43D3E3165DD9B" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CAF4782BEEB4150B37C0293B79F0069" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_887286F4C29C1F45FAF43D3E3165DD9B" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_887286F4C29C1F45FAF43D3E3165DD9B" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_887286F4C29C1F45FAF43D3E3165DD9B" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_0B60CEFE230E4633B1FD838B2E9E4D46" + "MsmKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" + "OwnerKey" = "8:_1359C7CA18A745EA8445F44058628957" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_3B72D4DBB2DB48BFAD0801684500E08D" + "MsmKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" + "OwnerKey" = "8:_EC057A65CB2191A3A75D32D39E2C9281" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "MsmKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" + "OwnerKey" = "8:_2035F967DC674709A414035CBF8E36FD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_2E3DA24B734E4A11A8D0E0753635C7AE" + "MsmKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" + "OwnerKey" = "8:_CF64DAC62FED43EE9B6F411BE5FBF065" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_1F07CC99CC9947599D83707F1D15766A" + "MsmKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" + "OwnerKey" = "8:_89C50D3BE2F9490EBB5D778B96C32C9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_5C7248F3FB9C4BC08BC60F647CF92413" + "MsmKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_88B4F9E12DA3A564E867789D16238F81" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_88B4F9E12DA3A564E867789D16238F81" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_E0A90872657427483F053288CC41F7BF" + "MsmKey" = "8:_88B4F9E12DA3A564E867789D16238F81" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_385E4C4F5EED8818E2DF6396C14184B2" + "MsmKey" = "8:_8988F38293E6443C82ED10D12481699D" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_89C50D3BE2F9490EBB5D778B96C32C9E" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" + "MsmKey" = "8:_8A1BBE2E8DEC4DAFBCC14BDC7E027B48" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_8A2729C4F323C0E2EFEB67AC17F2900C" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_8A2729C4F323C0E2EFEB67AC17F2900C" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" - "OwnerKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" + "MsmKey" = "8:_8A2729C4F323C0E2EFEB67AC17F2900C" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" + "MsmKey" = "8:_8A2729C4F323C0E2EFEB67AC17F2900C" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_8A2729C4F323C0E2EFEB67AC17F2900C" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_EE657F070AC54DDCBA5CD56C53F3FFDC" + "MsmKey" = "8:_8A42A9274EFB189CCEE03074E79EB5DC" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_6CAF4782BEEB4150B37C0293B79F0069" + "MsmKey" = "8:_8A42A9274EFB189CCEE03074E79EB5DC" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_0780B22F54AB492BB65CAEE79E2A59BA" + "MsmKey" = "8:_8A42A9274EFB189CCEE03074E79EB5DC" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_8A42A9274EFB189CCEE03074E79EB5DC" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_8A42A9274EFB189CCEE03074E79EB5DC" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_8A48519D23634D2F9EC22ECF0A14A3CC" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_E129F749CD8340D59FB77411E5B5DD52" + "MsmKey" = "8:_8A9A64A682FD4961AF608A5C9A1D3A2A" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_8B79E641FCED4F83AFC0AB850BD604D7" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_8B7D01F246DC495996E2A46DB76D4F84" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_8C36F045415C427CBAE31BE41C9ED701" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_A382D02B948C4B54803DC488B33F0B3A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_FE8069F25C7542899AA4D3DA4F912B1C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_588842B28A75F1BD35C5CDDBB0F123D6" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_32EF223E0EFB40A88EBE556C8EAA4AF3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_5D71B277C4094CB78F15A21AD45628F8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_45E53FB27049D042E5DED373E26F270F" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_EB98E04073DF4D0A81057B1F53EC6632" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D7D1CC64ED582F3FEB317DD60A477BB" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_C8225AB4F128DD5C462799E34B2089A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D7D1CC64ED582F3FEB317DD60A477BB" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D7D1CC64ED582F3FEB317DD60A477BB" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_16EB40669FCA68C2E34800ABC4D81F41" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6DF51DDFC6B0453082F2B2406811F6FA" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6E21E4015E084B80B4E408564756CE8A" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6E350884A4BF44159F89904F4FDF6D50" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6EC3A0F1473149B188D48C38F48FF966" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6F46DE3BFC204F009FA7ECF6785839DF" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_380884DD2753A301C82737899E085AE4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6FB82D0B427BFCBADED30AE11135C003" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6FB82D0B427BFCBADED30AE11135C003" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6FB82D0B427BFCBADED30AE11135C003" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6FC6830B79AB4444918122B66EB28E10" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" + "OwnerKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6FDB2764263541B1BD6E07B887CE1AA1" + "MsmKey" = "8:_8CC35151D8EB44179879DD6E1A3FEEBE" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_707F3FA8E34A4681B3ADF419E6724458" + "MsmKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_709E7345734C49C785344FF2FEB5F15C" + "MsmKey" = "8:_8CF037BE3CB64FF881475DFEA1AD1989" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_70D0E7C7C68F428490359781FA96BA7E" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8CF03875B4957823DB3256163B0305BB" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_70F8B2B0578A45A09CEC90DCB99959D2" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8CF03875B4957823DB3256163B0305BB" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_713C184BE2CA45D0BCA6495686EC6078" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8CF03875B4957823DB3256163B0305BB" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7169540326D944AAAA2870E3282DDABB" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8CF03875B4957823DB3256163B0305BB" + "OwnerKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_71A6F30AD21A45D5BFC23EC8EF3B493E" + "MsmKey" = "8:_8D020173A86143AF88BECB2760066FD1" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_71DBD969B0CF4DB2BE1F02AE13E5CBF1" + "MsmKey" = "8:_8E44223A3DCA43E48F5BBBD55992A4CC" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_71F76A9747B14B2CB34B28663648D9AF" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" + "OwnerKey" = "8:_71DB4173D0A1DE774C90437928F85735" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_724A69148DAD41FE8071EDD44140C459" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" + "OwnerKey" = "8:_40D4803D1BCB496489B81B9239B44CC9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_73A58D0939B541DFB73116EDFD2DF065" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" + "OwnerKey" = "8:_153A8EA805CA4828B967B48FF6D4BC37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_742D66E0B36F48E9975E34026F43F7B7" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" + "OwnerKey" = "8:_44B6C4F217E64B8680113DF51E0B5C55" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_74D6C219C0344F618D8A91E4E60D6DD2" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" + "OwnerKey" = "8:_C4E024481F9141A0A7D82D763892B305" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_757E886985FB4EF9814BE6364A1133D6" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" + "OwnerKey" = "8:_716F98D87D6841DC8B6B346A171CE780" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_75FE1351602A4F8E85CB6F9A14FCFF09" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" + "OwnerKey" = "8:_9404A6EA40F4A7894ED3D517521AF25C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_76B8C3FD98024834EB912F222C3CA7E9" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" + "OwnerKey" = "8:_BDC9386BC0BF26599814EBEEF06578A8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_76B8C3FD98024834EB912F222C3CA7E9" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" + "OwnerKey" = "8:_791F7F6F4B02DF11734DF494ED085D71" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_76B8C3FD98024834EB912F222C3CA7E9" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" + "OwnerKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7740A5F5AF344E60A34D7B662C7CA4CD" + "MsmKey" = "8:_8FBACFC9493D429E867EA837DD8FD344" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_77724C4D6DDE4D7FB55FDA71F5BC6687" + "MsmKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_779089C4535D1F4BE27BCFA5629CC6B4" - "OwnerKey" = "8:_0F6D284DDECB11F82AD5814134FEAE6D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_779089C4535D1F4BE27BCFA5629CC6B4" - "OwnerKey" = "8:_A713D419BA6D49E5878EB49FED28B813" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_779089C4535D1F4BE27BCFA5629CC6B4" - "OwnerKey" = "8:_93DAD49FD21243B0903DE9ECFCADD0D6" + "MsmKey" = "8:_90485B75D81F42B292D7906C6862947A" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_779089C4535D1F4BE27BCFA5629CC6B4" - "OwnerKey" = "8:_E34DEC63EF5AECFFBF8716A00D7C2056" + "MsmKey" = "8:_9075A90FF94D4EBA9C705C1DE345ED92" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_77CB7EFC64B24F69A2DB0FD932B789A0" + "MsmKey" = "8:_919881645AD445A2BBCB559AB16FC898" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_77E4F905B2BE49CBAE2EB1D1631AB1D4" + "MsmKey" = "8:_91D399B7524E4CCCAD103DF52D7D9932" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_77EED7A9D27544A6B02FB4F95469D115" + "MsmKey" = "8:_9293A235354B49EA9BB13A9B93A7A1D3" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_782CACCCBFD64587BFFC4E311ECA9631" + "MsmKey" = "8:_92C68CAA75D34889A7F3B710055EC02A" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_78718FB568EC5F0FBD61D8EA7614AC2C" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_9326C1CEE75849B2B20F8C8DA8C6BB7A" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_78718FB568EC5F0FBD61D8EA7614AC2C" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_935D659A1E629D9E893364FF0C941167" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_78718FB568EC5F0FBD61D8EA7614AC2C" - "OwnerKey" = "8:_9CB339FE4F29483BBFC63B8DAA58487C" + "MsmKey" = "8:_935D659A1E629D9E893364FF0C941167" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_78718FB568EC5F0FBD61D8EA7614AC2C" - "OwnerKey" = "8:_C5B0AE74BFAE45BA893232F4A15B6C27" + "MsmKey" = "8:_935D659A1E629D9E893364FF0C941167" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_78718FB568EC5F0FBD61D8EA7614AC2C" - "OwnerKey" = "8:_7DA9550944E242C8B9D670E9FE8EE460" + "MsmKey" = "8:_93FC13260F6640339AF6F4C1FBE7C22B" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_78D95902EB68CD5C725D065687322710" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_9404A6EA40F4A7894ED3D517521AF25C" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_78D95902EB68CD5C725D065687322710" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_9404A6EA40F4A7894ED3D517521AF25C" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_78D95902EB68CD5C725D065687322710" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_9404A6EA40F4A7894ED3D517521AF25C" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_796939A9213DCAED09A37C3DE51C80B0" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_9404A6EA40F4A7894ED3D517521AF25C" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_796939A9213DCAED09A37C3DE51C80B0" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_9404A6EA40F4A7894ED3D517521AF25C" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_796939A9213DCAED09A37C3DE51C80B0" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_9462BFDDC2C942DE92F9A0DFC9E7A880" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_79CFE04F74314C5AAA631C8A6835BA7E" + "MsmKey" = "8:_94FAD8EAA57C4DB68ED601C6F5F7B54C" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "MsmKey" = "8:_95610503B2974646BD21D4FDCE993A1C" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7A001E5060F007B76553095966B3DD3A" - "OwnerKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_050B0C597A5045379389601790CC6923" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7A001E5060F007B76553095966B3DD3A" - "OwnerKey" = "8:_6CAF4782BEEB4150B37C0293B79F0069" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_FDF8C7CAC2674036AFE74F2FD3B5D0E0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7A001E5060F007B76553095966B3DD3A" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_FBCDC555A20E406DB6428A2BCFCD948C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7A001E5060F007B76553095966B3DD3A" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_FACC7D8D886249829543B076EC2FD9BA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7A001E5060F007B76553095966B3DD3A" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_FA75660EFEB348B7AC175C24D774F176" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7A28B079B11A4E5DAC6934D4636D9DF1" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_FA592753CDE042848A569F999BFFBD44" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7A5B16731EEC4355B576D7DDFCA358BF" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_F86D3CBF0B1F43668BF213D00BF2E7FF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7B84FC380764415ABB407E76018A6C1F" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_F50DAAA0E2934C479ECE2D8802E610D0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7BB2F2553D928EC95A45CFC8C2047585" - "OwnerKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_F44B9F499B54413980FDF3B3201DA9FC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7BEEF2356B6747669FC740180F2A25C9" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_F2D5764A578D47B7A5F39A4F078F6794" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7C38E8CFCE24417FA2A80EC4AC70D9F2" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_F106C022A6904BC6BB197A83AB8DAAC8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7CB2616BCB8E48C6A6B018CDC5C00EDD" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_EFCC656AC74B43E495D1B9EAF292B675" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D2B813F721C14D9263F358A347E4DB1" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_ED282BD291954FCF8BEFDA9D27F67BBE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D2B813F721C14D9263F358A347E4DB1" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_EC1CFBB502EB4FB9AD5C501435FC8921" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D2B813F721C14D9263F358A347E4DB1" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_EBBABB825D074329A7E5B1915C3232AF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D3F6BBD4122435897F5038F377E74EB" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_EA837FA84860436DAAD8D64D941B280E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_E805B41593F64EE9B4641C1AC3146888" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_F15129EDC4B8463491B8B0C0C7DC2AE4" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_E7B7F39B3A4E44929B4467B0F77CD7B3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_7C38E8CFCE24417FA2A80EC4AC70D9F2" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_E744598D05BD4A72B9CC387E36733113" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C739986D38D4428AA8E16DD93CA8F2C8" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_E738C8C29E9E4034A27CFF1EC14A39C7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_6E350884A4BF44159F89904F4FDF6D50" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_E502D4E6B4CE477E9C8584C2FA1CB3A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_19FE79ED86B14135BF9ABBC86A76C182" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_E3D571DDD2B44063B2081E8535FD46E6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BC55DE2D96EE4BE7B63A10E87BA44D07" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_E2E5B1A173384F57A03F090CD727C49F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C0963962D778472C925FDA3E346DFD0F" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_DA43343BE0AA49CCAC8C6F8C11231267" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_8DA7C6C81DDC4F94A07D257BE53DF8B3" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D96CCFFEF1EB441BAFA0B04DA20ADF5A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BEB7712F13CD4B2CBEA04C676E1B1CF4" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D8CE98FDC0B643A5BA490D9FCCBADE21" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0ADF9758C9EA4C82A9116965FD5C824A" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D8979AC1BB2F4805A6F3910449C8D2A9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_23ACF22077A74F59972762E7C95E5E46" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D56039FB07C948599C4514959B5603C9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_69642BE489D343598ACB8099F7E9633E" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D2D9F77E68304266A99FC9CB4D0760C2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_FBBEF73DA7CF42B195372A8C11C6117C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D1536A9A50C04C1C9CE3347977FB6F6A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_636F9E41617E45019ACB3A820A95DA38" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D0135A8E1515400F82789A103488E9A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_A39781889AA44D63B159B715850377F3" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_CDF71BE081FC4947BBF459AC8209ED17" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_575A4036805E4C2489F6706A5C20D3E9" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_CCBFE906A96B44D6A430F23C40339B79" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BE071671F7014436B3DD37FCD7ED12CA" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_CAF73FC6756D481DA84E75224472AA35" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9754C304CDCC43F4B00D92DAB5DCE248" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C96BF04976E84586BDC7959B5441D238" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_076E4805821E493BB030314D22834904" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C68B0CA281FD4B6D98E6226E53465377" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9298A48B5D8B46C495B29CC9AA5D510F" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C659DE23C00C4113A5B3AE9C1407DD25" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_CE947B66B9254A22BF0CE0672C657A22" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C55809C9E155444F9A5D4B5BC847935D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_E54A5417B7A74CA0AFEBBB6AC3B2891C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C50A7A1A8EDE4206BE0B828DB5216837" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_F06D87FB58FA42DAB9F564332CE2105D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C2FBE1D7563B4F8DB907BC4BB0F33118" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_FC95A4D5ECA249D087B8C8927A983254" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C274A2B2CA9C43BB8E680F1B33C2BB11" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_6FC6830B79AB4444918122B66EB28E10" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_BEDF1CBE662C4A6DA590ACBC7F4A9A41" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D346B9B850D84EABAEB1E259694C69C5" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_BDC26B191C4E46B2B8F880A9313172FF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_FF955E7B7BEB4C2CBB3C9F9D077CDD5B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_BC46BAEB1ACB4B6C9B2E676BC5136CB1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_74D6C219C0344F618D8A91E4E60D6DD2" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_BA2B96C7FA5549D0B77262A6B2D056A3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B6CCA4A9653249069470DF365EC73E13" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_B9ED092670E34E93B444DD3F43E9047E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_742D66E0B36F48E9975E34026F43F7B7" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_B101C0AC4D184A2BB2E5114EC95A95B4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3578A5B920F94C4DB0383BC28AA394FF" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_B066540B0736433AB6589C065B960701" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_422C98F0CDBF49AD84C6CFD67ABA6017" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_AEB09EE12FAD46EBA91839C0CBAF60A3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_2A55321B97C0400287EFF2740925CAF8" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_ABB9C09F16504908BBEF4AF3BF4465BD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_012BD970C28643B1867A45BABD5EEA80" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_A65E3D96F4DD434BA582E3757D43997B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_A5CFE4C8CD314D6B81626D8C947B6558" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9CB339FE4F29483BBFC63B8DAA58487C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_A1B9500035D84C3FA072C1A6EF911D37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B9AEDD2931244B6494949D55104210BC" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_9C76510F27914A629C0F3A36FD75F5E9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C5B0AE74BFAE45BA893232F4A15B6C27" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_9AA5085F56494F5FB880DDAE22805147" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_7DA9550944E242C8B9D670E9FE8EE460" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_99AD114962244FAE9D19BEFCFAAB4FAF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_50AA9E5F36F34BE58C0500BCD3665E0A" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_995CD17ECC5845B38F190F2E3610E30E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_90951E8E6B5340689008B41EDD3A3F79" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_9821F745AE6C45F7B26812A8F0D23292" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_E5543BEE19D6404AAF21E98E481D50A3" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_97FB68AE477D4EE690B0048F7FB40089" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B4A2F77BB0CF4ECEB26E7E3D2294CF4F" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_97B853BD0FBD4246A35CA4AC6699E141" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_087BC2E0C1D042AE961F35C0EE73A5EE" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_97ADDCFDE8E14E329E2E053CF1CBD24E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C41F241047324439B40A7267816049B8" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_963F226EF01B42FABD1DD7824A0D8DEC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9E7E56BFEC0D4ECFBC08ABED74952809" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_9462BFDDC2C942DE92F9A0DFC9E7A880" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_FC53FBAE9EC941CF9F74D14A1A911331" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_93FC13260F6640339AF6F4C1FBE7C22B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_95F91B2628F84E108914858D305D584A" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_9326C1CEE75849B2B20F8C8DA8C6BB7A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B382B3D55198467A833D4D68A97F3B71" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_9293A235354B49EA9BB13A9B93A7A1D3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_4DFC695831944FBBA7AC0DE65E7FC634" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_9075A90FF94D4EBA9C705C1DE345ED92" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_41973C8B8BF14359A8BB5710596C2A00" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8D020173A86143AF88BECB2760066FD1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_A713D419BA6D49E5878EB49FED28B813" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8C36F045415C427CBAE31BE41C9ED701" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_AED7E1511C6E47C4A7750F30954E4A84" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8A9A64A682FD4961AF608A5C9A1D3A2A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D10BDDA5EB364256BAAC5CB1AF12B03B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8855F5D542A04033AE1FCAC6E7CB6389" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D08DD0666CC842F1AD8325C1C827285E" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_857B24DE530E4664BD4A08781529B3FE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_93DAD49FD21243B0903DE9ECFCADD0D6" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_845D79FA2EB84633B533058C2714CDA3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3641F13EEE6D40418EBD3ABED7007E10" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_81AFEF9F03D8489B9EE1A8622DAE3A35" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_7F69B08CF92C49C49E4AC79DDB3C1A9C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_71A6F30AD21A45D5BFC23EC8EF3B493E" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_7DCD3B5302DC405B8A2643511ACC5403" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_8ACE14AFC519438F9F7CFA1E57E857AA" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_7B069A9B1491433AA37919DB79E1CF40" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C17E953CE554458FA3D973414751D2CC" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_7A84333992BE4051A17655C8A326279A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B6288F8D68A9416A92DC90E280B06EA2" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_79B4DD4657554A8B9BE6072267D33839" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C0D404D4D8454A858FA85D82CD92DF78" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_76B7C52A3F814FAD80D2B109704AC016" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3F5BF7D569384596BF6FC701EFFECDF1" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_72E01BBE8FF147988DB5612281B42645" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_079009E7E5124031B6204AAC7FF67A9A" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_7074B3764DF24B388A81F8E9C202DC9C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D969904EDA3D42E9B175DFF029D96C47" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_7022B68B425F41DD82B3A2A120BCBDBE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_2CA572F0801641B0A319B8A36405E97C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_6FAE27D054224ED49E85B323757871AF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_7BEEF2356B6747669FC740180F2A25C9" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_6D1A9B163ABF4B5BAAAF60ABA6C0ABE2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_27E33DD3159943A180F3FD6E7A0A88F5" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_6D02466658184C1EB776E0F595862B1C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_DB6DA2D86C6F4DC68545755D67200523" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_6B859A7BC8A14F42B491894F7EC47F04" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_70F8B2B0578A45A09CEC90DCB99959D2" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_698CED33DF4A4DBAAA41483975BE2F8D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_63671CEDA4AA460FA5689EBD8101E817" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_6416F1F34F3E46AAB53DDA5D66F179B8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_EE657F070AC54DDCBA5CD56C53F3FFDC" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_62DE6931D33543D691C050919C5EE5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_6CAF4782BEEB4150B37C0293B79F0069" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_628929C01DE24A94B168933024A5D4D9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_A6339429BB9B4B8993C3D9BB29ED86EE" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_623351C6AD374B06A34FD5401A031507" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_42034B44692647A698F6895DBA9BFCB4" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_61DCCED4188A44C79CE6F4A3734D9767" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_1797384676994F4A8D20EA3733C18E0C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_5EFD2F1384E54540AC9B8A0FDC2D115F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_21CD9813D578469288F33648FDEC7EB6" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_583588A0B8CF4F84A0E0CF3EC72745AF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_75FE1351602A4F8E85CB6F9A14FCFF09" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_5827C37683574CA6BAC4868921D71620" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_1528DC0C365C4EE8AA4C2CEE02CE2D85" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_57196EE3DC5D4680BFF12E73B0BFA07F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B1849DE105A443F195D7510B391D0629" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_566D8126C1244DEB8E50968F76E754C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_866E8D70379E4EC8B625FFE1F47FD889" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_50D0E5D4B849442E8FEAA043126CE608" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_35905B61896E4B85BA1D8C0529AF72AC" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_502E07D98F7D41258B90D0C4E6534AC9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_FF1CA39B5F0F4A5784B3F060A1AEE9FD" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_4F2FA84345B8495CBA758099FE43BE26" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_116BD942CEE84471AD2C9816EAC500BA" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_4F2ACE4162684790B7EFC482F383A426" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D132FA26F719439394D7C487765D7801" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_4E8909C2671C4FEBAE2D9D055E7DBF01" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_97E0B4AF7AF74BBEB8AE3E3019C5E916" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_4C2D7B63D1124D4BB0DB0BE0EECF61FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_2343DBD422AD4155ADE348A17AB95FEB" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_49BFB19D16A24DE78D3C67899AE263D6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_F62AEFC871D44831804BCD4DF25C23F0" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_498D4F9B9ACC450EBF5E5D239FA1A0C0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0B2BAA3A5E604087AF901AAAD0289AD7" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_489053C2C7E64A8EB7E695C24674C475" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_F234093989D94177BDA1899CB3899E6B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_47A1E70B29974E10B8097F103EB4A2D6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_8A9143138F81414DAA84CA0B6AF5D476" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_444419ADD92D4E62986B8F8F006A3408" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_14727598BC6740079DA62CAB552BE8A5" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_43BCD1D58AC6473D81AD981399490F29" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0E68B1E82AAD49399267ACAB562EC6F5" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_439160081B2C4D7FB4B688D7EC512765" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_F990AF8668E94BD9BE4862F58E0BD0B7" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_3F8F3AFA18DA43E5857C135FF1EA49DF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_87D78666028C4FEA88D134AA4B28F555" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_3F2C5644AA1143A5AC5EE5BC6A79F70D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C8D235EB2C8C44488CC95E6B770AC24F" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_3E0A69D2C6C843CA93DE17024F9D4EC6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_12335B8BAE0A4F779B4F30C11E447EB8" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_3C9808B85BF249C491319517E96A5CB3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3C53BF2D2D5C4504A0EE9A85F5A5DA8D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_3BF61A03D74549DB80701D11312AD464" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_8172857E0F7E4A0486A9D6A0F60B58ED" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_3B555F76AB464054B547AC27E6A4B8EB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_F0EA57735BF3449AB63083CAF9B9B3B9" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_39FBC22F5F9A43D38B9E6BB6E9CF27D6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_57D15A45939740A0ACB702A40DCE5CA0" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_37F9CA373D6B44C58DD3134FB9A6FD98" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C3CCCAC0E34A471DAFFC4BB34109A8D8" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_35F2A45F8E194D1CA2ED585BD8A95B75" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_01E9CC4476A64B8C82EB0BE022CF047E" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_31FC7F597776489A8F43E32E24F93BE5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_584488BE0E5B42448B64AEB8295E6216" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_3135B425C03D41748F6CFB3D756EB9E9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_62A01E8AE5354288B3F280DB3F18CDF1" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_2FAAED2D751A4742B837AE38C9F6885A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_67B28C0C25A549578A5E328EA971DE36" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_2E719C1428664833BCA5D9B8CBFA6C93" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0205F5D1886848139710911DD96B405B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_2E5120DFA2DA41889A6CC3FDA938E4E9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_8D462AAC0EC94F7D9A54CAAF190F9061" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_2E3D5B68BF234E6BA1C15D82AE4873E0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BF29C4B1EC234DD3AC7CFAFE4313EFFE" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_2A984AB742E34D9CB2BB84942F51F4A2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0780B22F54AB492BB65CAEE79E2A59BA" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_28ED007DCB2C4A0F92918CFFD14EFB47" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_E9B8002F9879403F994F719F640BFF20" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_25FF3BA4F04D44A29B55492225D57B91" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_248BBDA68E464FD0BF31E05062AB7B23" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_1F110DF3B1D440349F33E0F881C9A394" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_1DFC69D3F1F54EB9BD372F5DEFABCEA6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3F7F9B04DCFE498FB90F10FD533E50C8" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_1A3116329853417B930370F0E02BADBA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_51F4D594D73E477E856528EBC42B0F9D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_1A16B3277BC0470DB6FA4A7178FAE161" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_7A5B16731EEC4355B576D7DDFCA358BF" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_1900E767C0AF4A0685E72AD00CFE245B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_271011AD979B4CBBBC9E510C783444B0" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_1875465143744924A9CD3694FA7C7300" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_5B852E420FAF4CC99F72BCEC55D0342E" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_184D1FF76E0A4B30B78466ACCBBB9E67" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_FC262487CAE543089CB587C8166C581E" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_17E7BB17CF444C9782DC6CDD352FBB0D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_99C527251870413C95F2B9A8CF693728" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_16B991C2E44549CE8827F82098FA9753" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BD2010ACC5854E1096F7AC798834A8D7" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_147B36A46E7344C9AE8E2C93AB680825" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_FF838842077D44EAA2A6348E18D08E79" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_144406C0B2B04AACA803CDBE2B1E97AB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_12A45DA723FC486CA7EE607E2F7762F2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0B60CEFE230E4633B1FD838B2E9E4D46" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0E632DF9EB5C420ABC24BDEB71F6B1D2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_84D1E150F94A4734AF69639266E603A9" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0E1E7B42F35E4933874BC1468FC5DF8D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_55842097A1B740A79E6644F235B0C1AF" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0DECFF529DF243F5A0FFFDEDB84FD568" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_A8F6731403774C40A8E480A587DFE9C2" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0CD5D9C4AFDB414E9294643364414C0D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_8446B116F7184398BD545B60AFF3FC46" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0B5AD937F1C248DBACFB517AB5E7EE8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0AE5E64191244A5AA11686D51B37BD7C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0A679AA7511C440C9E2D3079BA212816" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_6257F8A9A74A453984E407D6CB916AF5" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_08E6AAF1D9314A638835D668E74CEEFC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_07F8268F05364CB4980757202CE8C1DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9F9DBDF1BE674422A100529C9BAE0E4A" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_067B1859737D4828A07C8FF595D279CF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9B2EFE50DAD1458E8932CCF4310BEC9F" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0537A5F0ECDF4E38A7FBDDB5AE1F7670" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_E129F749CD8340D59FB77411E5B5DD52" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_050836C30CA44750AF4D9258F3F0AA1C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C7B8B31323F147A19100C0D701B4101C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_04822DE2C02C421D8C46A31E8DF7C13F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_F1232BDC1C584F518602C340CC6D9B3B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_036B1790890744BAAF946F87847442E0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3B72D4DBB2DB48BFAD0801684500E08D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_00DABFD98C754A759E5ABFB211B5C249" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BD0C134F8B3D461082A684578110A12C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C599F411B318474096A28EEAF3F4DCC5" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_F46463168E28445994747470940851B5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_95FA2F22712340978792F943907E95B4" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_777D66705D8B49A0AA649B76F14CDC63" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_E0DD91B6820043019824432F3CCAC570" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_9AF4DF764E3D402FA7B373767289455C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_E8309CE031A84E3BB0C7AEA48E019E22" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_58C396CAD94644E493315C2801EC4AF5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_84381ED1D01A444DA4B139C706F80BC9" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_40D4803D1BCB496489B81B9239B44CC9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_ACC9D7826CBE472A8766CAF892A6B8A9" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_153A8EA805CA4828B967B48FF6D4BC37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_87D4C6754BA84A78948B93C0355CE798" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_44B6C4F217E64B8680113DF51E0B5C55" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_4987219C388E4B8ABEDB8326ED8C8D7F" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_54BF7061F9C747AC8812765DBF13E4FC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_E93E4EB634E7453F8CD394FA9939AC72" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_E43B59AB67864BD0944C88D3E25021E7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_2F1F84E9CA7D46DF9F9739205F12F95B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C4E024481F9141A0A7D82D763892B305" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_4046BC6714CD4C6BA6590D5B36FA1EE6" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_02848728AD0D442B974E23D647DB20B8" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_5D4ACCBB99CE4379BFF48836F57C9CDB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B2011D514CF04C259ABAA54E70395610" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_A959687D5A594B038895659012B722D7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BFCE0B7A76304ACAA2D84D64CE0EC7AB" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_A382D02B948C4B54803DC488B33F0B3A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_2D60AB36513C46C78C8D1C3B182AD525" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C630F7E8EA4840BAB1B2559D71483F8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_FF32F6EB6C9C4DB6B530CB8C4A5A5282" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_A31F3F958D4547698677DD3F80B8FB27" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_49F119D04B854F66986DD884302795FE" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_4B4619FA9E87412183EAD43D28224716" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_04A14015937743D8AA55044D7126131B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D8F5958646964348B09B2F5870ED1BE0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_1947F3829A764DD2A928A23101DE2206" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_B4DA35F6411D41A4B08D2B39BB702932" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_01D43FE872054FCF8A67E90ED85E1CC4" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_1CB01662D311443BA86B4C7D1C5F91BC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_6B59D77837404D169557D13FAF9B8F58" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_5FB303FF5D00491090311B811D4414D2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_DECDF56F984E473E92323CACE22A1C1C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C914EBE43CDF4902AE0D19E96CF70C0B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_638ED98CAD46C3F510314D5BA18F5FFA" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_2DC66B6B0ADA43EA9D508F2B6E62C1E8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_6EEF588F24794BD699D2C5F6A0670472" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_E767A68E6E9F41049C353260F89FEAF5" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_4E05FFBA65CF4791A30C1FA9F5B7C8C5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_8D916F703BFB47DEB61E0FF69D9F6189" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_655FCCA1E86A4494A1245290A41E97B8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_55F9FC11F41F4C3EBF98220500974FBF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_2E3DA24B734E4A11A8D0E0753635C7AE" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_BDE87E6E1B7A4905A9CEB9E5C03878BE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_A28626C07DA34FBCBD3FE29D07AA0E56" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8285DC333F7A4C1487CD04AD46B1FFC2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_1F07CC99CC9947599D83707F1D15766A" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0368786955D94604AC394EEB6424743F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9F396770E1B644CA889B7ED6A58E40DA" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_97A8C91BA51847EE91CFF4DB840161FA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_1E50F1FAE8654AB598E1D23C58C9236F" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_48FEC7295A1F49AFA9658B28040D82D0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9369A854E29045B69C5DBCF963B99BF6" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_1018C7A26FA94652A208F5653921720D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_5B3E026DD33A40C1A7EDC39A74BF1FA1" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_1359C7CA18A745EA8445F44058628957" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_FE8069F25C7542899AA4D3DA4F912B1C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_3E964B9E025440E98E189B782B208B5C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_A73B77AB52A14A06924029907A4E19B1" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_02BE941E90844B118EE56900AB646A06" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_DF914A3690054B6CB9B7658ACB9DE4BF" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_002D58F05FFA46FDBDB54483374D69B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_DC944ED3DEFB4DC3AB77F27A04FEC892" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8B7D01F246DC495996E2A46DB76D4F84" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_8620B1F0C2FA4D348B9E63F0BE9FA1ED" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_5B50C8B4016D419592F238C27112D939" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_24C2C186651045C29ABC82B522AF0835" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_ECBDCCED98AC46C59E8FCB78D0C523E3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_EE89A54BD17940D98397488D356F8725" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_4D4C37D93E3B414C8FE99DBB8E48FBB6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_AF2FD3529ACE48B6A5497A6197A020AA" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_392F5B3391E24BC7B8AFB886C9D58F21" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_14D46FEB93FA4D299E6056B1E348312F" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_A5CBCB7AEA5649EF8D26C13CD74B09E2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_E1B0A32F6019411481452214B755CDD8" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_CEB3E300107F4C12BEC487845DA4E174" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3A43E488F1DB4702B7656E80EE56C91A" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_527DEAD8AE7E4E8E99348D277DDC3AD3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_12DBB88C07D24A3EA8D14083F0B10F43" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_5B538E2AD9BE4EEE81436217036C9D66" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C3B07EBEFAE54F1BB2AF8F980E78A084" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D6144464659746A8AAA12CCE9508EEE0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_34D818AA520F45E993FF680D36AD063B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_7EBB599986E44153ADD9E12201E1951B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_00B352615C3E46EF86D299B4F122F3C6" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_F50034E84445435DAAB8F14F1FE1E03F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_AB71A1548839486383CCBE843D38D197" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D724F156DB414BA6AB7ABFED86061864" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_1F46440310454818831FECAED692F4FF" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_BC2AA73D1EB342DAA2E6E829A46B56DF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_AD807159398E42A4AFF9F5DB174493FF" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8CF037BE3CB64FF881475DFEA1AD1989" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_FC009E9A5A3440DABEEA87E31255CB3C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_5F35B58C6C1B4C29AFE168DA80BD218C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_7740A5F5AF344E60A34D7B662C7CA4CD" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_E72F0DA7D97E4A83ADC0D935CCEBAA2C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_ED0DA281F66542919D2AC473AD74BA14" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8FBACFC9493D429E867EA837DD8FD344" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3A446A1DFE2144A7907EDFAD418ED766" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_6AE632079F394BD3BD1D95910CCD9D25" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_68B207B0C15748148CE9433956D9DF10" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_57FAC309E7AD48B78BDE11424276E2A8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9C7BC3B28FEF0D6A3C7DF01D18722E6C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_FC885A1AEC504F53914D5FCC259F5C15" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_ABF50DEAD3F44E68B097345106E563D8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_5C2FC8A37C274E7BB533C6F20E4E42B5" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_7A58EB8E4D024E9ABEEF4643AD40C308" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_90FBC11A12284200A19D1869ED0A1E1D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_ADAC2A1C6F7847D680023FD8B62CE763" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_FF5D01091703492380CB3F05D0985852" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0AAB97EB5A764B0E86E53B0174647FB5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_AE9BF056D28749AC920B22FB0FB3F2ED" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_6AD6EEB4586A4ACF9B3E9F11A6F644DC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_CE06A3E8903D4CAA961DC66421FF050D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_716F98D87D6841DC8B6B346A171CE780" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_5CBF95F1E41B470A8B930A9DBE8F1356" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_EF1D2C6852E2496CB6BB1C17E585B91B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_CB02F647470F494189623712907E935C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3EE7A6E2334245A7A0DA54A8367AC9FD" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8A48519D23634D2F9EC22ECF0A14A3CC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_DC21853E6873482290484023DCAA2629" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8146F9A2DB6A4D498ED4A46C80ECC662" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D9B27F97F8364272BFC062C329454BD6" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_7BEAA3F3CE3A41E1B5E7AA81B64066D9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9AB31158976C4397B8ADF73333928D06" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_B02AC42471634FDDB8675ACE5C4A140D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_E24C55B98E6242C3B31344952E3ED6B6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_6979A6B680CB47C7A69BE7860AF298F6" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_32EF223E0EFB40A88EBE556C8EAA4AF3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BE5D2C19D8FE4FA1BDF8F4B535872332" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_B873BE40B7AA4D4FACE3565666F45F51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D27FF6909BB24D13BCEE5E0AB0B89913" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_5D71B277C4094CB78F15A21AD45628F8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_E74C8D77D5E37A69B6984831650003C7" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_F5FE62D38D5C4D30A5276F398ACE2208" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D3B9100D444743C5A5B2BEADE3C79799" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_7776F0B3F25D4F958A79A3B702D72900" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_1393BDC59A6B4C81B84D5C2C618156EF" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_AD573111A7F14C01ABAD569CED96D350" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C9119A99605F402ABE71C62A7381323B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_87840206D46747A097E4ED2B15D78CFA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3B678EA0E9FA4D20B7D90D75DCAF300C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_78876DFFB8F54757A7E7CD5F6937D821" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_605BE8A0427948D6B90C492E1BD29A76" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_6E83BDD242CD403E88C6174D59C0F7D4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_857F5B9F107D4EE0A084B7EFFF52D005" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_EB98E04073DF4D0A81057B1F53EC6632" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_AD0702E6A985495B973E198A50FD62EB" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_73A58D0939B541DFB73116EDFD2DF065" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_DBB40A1C41C34EFFA1F4D9EDD04CA79D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_F6BAAF5364A4477F8AB5AC0EC2E90C05" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8CC35151D8EB44179879DD6E1A3FEEBE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_80443D2C922030B6CD68CCA745F0E5B1" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_BB2F0804317E40959BC54397F062E63F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_CD8824E528414EBDA5DCE3BA0A9528F8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0BCB59AFC8CE47079630A8051FEE4259" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_56340E8817D0425AA6F13E35C99A2EF1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_F74B633FFD13477CB23319970F4DA9B6" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_2B914DD2B9EB4A0383F6BD3034EA3F53" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_1E65E959ABB1497194CF38F4798A8F91" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_81776EE3B0D14F098DEF71346C834416" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_332A859EB8C541A1A90A998EE3709DF7" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_95E95D512F7447DAA4C6FD50CE087AEA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_2C7077EC031245D3A7672A143BDA4CAB" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_CB7900C58EB6431199E974BDC44043FC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_07828112E1204A3FA5A2CCAE0A8C82CA" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_DB755541B20243BDB9467F3470981BC4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_056D427A7CA44E21BAEF25AE453EEC58" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_B13A099F228149CDB35ED8B4D88ACEDE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_CFD22DE1255E4E85B4E653BDC727530D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_6DC1F90252234DA7B2C1EF13DF9104ED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_212F275B12BB4DF098FC914C59EB5539" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_681A6EBA6A68461C95E7263C5490328E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3AFF9A368102408C91046427F4596A4D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_A5C386CA7E4D475C8869A687EBEF8A04" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_8DB50A0A96D84033B91BF92B1EB35899" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_74F88C795ADA41838494938B37ACB05E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_ABCEABC5D08D44868FB094D55A3D2E40" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_60532656D73843A7B72A06A8FDF39F18" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_A693C02331474E77A4360436CBF86CAD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_7B84FC380764415ABB407E76018A6C1F" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_7FF631853BCE4C7080E8E8CB1DBCDCC1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BD3B5B85C4E445248560F41BD0DE8BE7" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_16DAD5A97AA149429273133023C05F9A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_5C7248F3FB9C4BC08BC60F647CF92413" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_67415B187EDD4DB2AF1B659373386D94" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8988F38293E6443C82ED10D12481699D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_CDC750ABB7DA4D5BB101583406E8DB9E" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_532344DBAAF142C2AFF7F262E5522497" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_243FEEBC941A41DD9C5F736248AFD819" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_2D703D824988419B9F04D1B09DE37026" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0AD2B80BD2AC492DB97EE4C5ED1BF5F8" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_1CC42556B24A44EFA52D3C6ED39D4136" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_CAB5C2A388B34D1F874E72AC38354BFA" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C3014022A0AE4FC6A59AA6B444EB7B1E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_53C949C71D0F422B8978AD416438B086" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_6410B7CD543C4AA1861A2AC1D40D5169" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B493379D394F49F2A257ACE3C4BEF216" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_9950BFEA0E494DFDBF222F8D162723FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_76060290214147F1808CF4DF19B364E0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0912E1C1C1F24DDCA531C6864D1665A8" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8E44223A3DCA43E48F5BBBD55992A4CC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_1D5335D7AACA430A8763AC84DDF08528" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_CCB130078DDD4B288794D03E93E5D82B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_39439E13605746F7977562D5DC45011B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_EC057A65CB2191A3A75D32D39E2C9281" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_293BB0C972324265A8F6FB8D8FC20661" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_77EED7A9D27544A6B02FB4F95469D115" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_BA20A3AB57C1422B8E71E1DA21B52473" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C8AFA500EEFD42B3900E727AD825322D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_975852014F5B4FACBBDF5C881DA76681" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_5B4C60C6EEFA40C7B393BB1299DF2536" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_BAF05666A62E4063B67A990DBB654458" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3B03D582CA5E4ABBA90B5BED06BEBA30" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0327CD370EE34AA4A8DD54EBBF99AC9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_08DBB2137E4945EBB08B07CF58EB154F" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_7741A8335D6344BFB4473EE8456BA323" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B64C145C07224471B09A38CB84311F65" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_DA87F4E078FD438E9CBA27D5FD4B0543" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D8CC51C9CF1742878EF7566CFF9CA640" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_16758E102315420CAF07169A47EF16A8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D1486B9C39CE4CC093E398FFD82384C5" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_7AC9D958070F4B42A75DCF786D3E4051" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_51C4B66AB9DF4631B45CE94538C8AD11" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_2035F967DC674709A414035CBF8E36FD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_DBD627086CF44A91BE97CB36B87CD8D7" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_88469FDDED8C4BF399DB4ABD4605D307" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9A32D9FCAA964D729A2A49D45B034A7D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_F81ABC3C293841A7AA5921A1286B040B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_97CF2B9129F0469F9E11CAE5A8F78A54" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_E6D8C4B69849495883A1497295063547" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_F4E0452827F743E4917D6E9D8C14CF82" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_736EDDDBC3584E7A83D01BE2C66DBF5B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_26BB9E5994524C65B5519578704FB142" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_025EC274DE654D70829DAFB1D6380996" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_A710F9451C434CE8BA9E9C48BD42D070" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_9C4BE12B0CD74B7CBBD18F04CB7C4D82" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D193446CE76C4B37A00A5D7ABF1F2335" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_A54C36C6AF724C4298C1C44B711EEBA1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_DB3E5FAFF6AB44D0B20B4355C0FEAB68" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_6B2518E99F2845ADBCCEC065B7A24A9F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0A548EEEC318444B898BF80F22CEBA64" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_57C31C2439A34DC987398DE7F6C5B1E6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9103E051B4A148C2AE2B438C56464029" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_197BB23CB89E43A5B6ADC5825C6EA03C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B0922AF6E2644FA8A62EBEB3B92ABD04" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_CB2A1C78BE69483C846E42C240F57994" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_E4C1953ECBAC459BA5CE532B297CB753" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_6F6DC417B88740A88ECFE1DCCF7B668C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B45E6D2A938A484B991B5957B2039B7B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C8225AB4F128DD5C462799E34B2089A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_4B14C5F18DE24D64A0D03625C2BE1368" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_FF01DD905B5046A4BD5F48DE0E98F609" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_ED4EB4B6E478479B9879EEA7F238D5E0" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_B41CF285191B458BB15E99523C5B2A40" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_27FCB52AD02545A5A271B25D61F652AB" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_62667E51DDAC4C82A79030A542EB7509" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_7FE3CA178C1E4CD49C7B2908F287A98B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_94FAD8EAA57C4DB68ED601C6F5F7B54C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_71F76A9747B14B2CB34B28663648D9AF" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_CF64DAC62FED43EE9B6F411BE5FBF065" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0537D874F7DD4D6D9C21CF15B8A83A3B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_AAD83CEDDDC54AAFB0655F23A6225024" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3D0690A621DC4F51914705AAA34C0E81" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_73D3FD7993624E07B5E561B11755AC2B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C924905900BE468CABD14BEB7314F26C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_CE6D89188B1C43438BB2A2F8F3334887" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D706847CA9704803AFE057226793B64A" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_5C837F67EF074C468C3D6F326FB979E2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_7E911BF5E2F54F589649B545BC27AB61" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_16EB40669FCA68C2E34800ABC4D81F41" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D27991107EA14C1C8B4A246C7658161E" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_E0A90872657427483F053288CC41F7BF" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_9818F96B07084AA4B619A0A41EE9C6B5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_818C90D1A56563131B63B1CA3CA576F3" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_999A55ECDBA24B00AEE2A5A207F8030D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_DD98189F70C149948FEBEDB7FFD024BB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_DF7BE6B17DB31AF84FE5CB648144B247" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_515A8CFB844E4B618CB13EC19A0FE75C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_385E4C4F5EED8818E2DF6396C14184B2" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_F05C2A6ABC3663BA3E2F3CF0A8A61AF0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_60307A9582FE2D7618125043293A02AB" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_80FAF08BE91DC1EC96DC613154D44F7E" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D4EC43B9F9144598017136DE430174D9" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_EABF3921F3284D87909D094D538FA526" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9AA9B1640404D837BA8E590A2A7B3FDE" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_AD652B25F4FB47219D9D111AD130AC03" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_A5281AE19E3C0466830CC797A9C17602" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_98BDFB20000E4419AA0EA3BD23B4CE59" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C11E19B0EB4B8A1E84235A23B46ABD98" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_20C4B3F3B3834BEEAD67E86770EACBD0" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_DCED769F3CED40F68BBF793A3190390F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_2DB329A52A3743378C38FFAAC6E4B773" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_FC1B3053EE004D9CA842FE7ACAB59109" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_80A5A7F152874D0C9FD7D6BC0DC163BC" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_F2BF868F37FD4EBB9EEE93828F6B8B80" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_2D8F89A0089B45B9A02D9A91A2D76987" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D147A209D52B47799F51651D4069C15E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_7E5F4EFD051649429B98C06216211363" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_FEEDC4F58B6148F79B34BCD14DEF1B1B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9BA073EDFD1A4ABDADCC69D75BFBAF99" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_35037DF8DE6149C18293212108B27384" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_303F7CF3217B4015923D69C06C37BC75" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_DC27C0EBA63D45A09DE6527CC6009B3C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_504E92556FF74DC6857BCBBB97FB7EB8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BE1AF78253A7446CBAB1C6914460994B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D21D86E7F5F54FBF8413690CA489839C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0AFEDDD7596547F9B9826E7827042C1F" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_89C50D3BE2F9490EBB5D778B96C32C9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_FDB1B12366FA4BA49CA83639303BB836" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_F8B53535DABD4E7D5E5951C921AC682A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C2095D44FD874AF0AB1674F7B81FC236" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_4EB2192CC00FB0EB1C5133471260033C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_22654B798E344458845FBB6968188CAC" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_AF0BC99033294CF8AC8EBA1DA757D14B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_EDCDF4FA15AC1B4C43D09F8B96C20B7A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_2CBD0767BD3D4FE49EEF2B824C122552" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_96E7CFD075BE4B4996422F4F207A4277" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_25E58EB806A4EC8427C4EB8A218A5087" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_ED22E7D69A5A4C4DBF6D500300E53017" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_3F7191903485AE336DDBE8F265888B67" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_22798D688AD347BE8DEA7C7822E632D0" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D61738826E13F256E5D5365099EA0D68" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_CB90C612EFF646FAB59656A00BCE7784" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8765771DDE4A840EC489FFEEE5E7780A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_38B33ECD4A0F4FDF8407B1FC67E626FA" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_A9035D942941788E21A775971D3379AD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D98AF936095545A4A7CCE03DFBB0EC62" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0F1F0D6286EEEB4EC6814F48A7D049A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_84DDF0EA2A0049A391FCE138D9CB5660" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_AA98FEAE530E800F83819D70C36CAF58" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D70105EFCEBA442B98082B3C141A8AD9" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_1DB0820845EDE427EC72C63B74AB812A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_10A8E89B79204217B9C91D25AB893E32" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_A7B347FCEC623457F1FF4116DBE26DE9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B5615E73CC7BA3BF0317A4656D181CB5" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_B31369344DC7215D3A7027A45F1F6021" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_1E240AE58646D3B961307C6B533D156C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_EC8AD8267010F2D7915E238E2AC5218C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9D8B9BE9F9CB11CC9BE6E68CE877BD3E" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_2A481EE8B108B1BA0DA9D0F7D4DFF3D3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_796939A9213DCAED09A37C3DE51C80B0" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_3101F9AFF87F4586C5C12A29FB502D79" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_2E21F153B5AD896A9931D7560E3EC457" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_F1DD1333A875F0DB8A3FE15C1C30474C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_A2C4BBDA6C653F878CF9F09DDB19EB67" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_4BC9CD649C175DEADD4B1DEEC6E3E6A0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C2C3BB0798EFC1FC067F01DF875DE2F4" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_7FA12247CFA9C7A384CE9D1B345A93E5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_5A3B9691BBA0905D20072B75D246E43D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D1835B3FF98AA2BAE46388B5977A4784" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_F7DCFBBBD2303C93730C794C86A43580" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_BB538FA2BB35D79B1A509C75F509CEED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B6C4D08D31CCEB4B3B525FF7287C1791" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_88B4F9E12DA3A564E867789D16238F81" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_95E19BAF64801E12E1F4F108490124BD" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0CE6E39840DD4AFA8D75CF4E5FAE6F46" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D95667BB0BE960569CE9FD00654E9D8C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C7C4378630198E8FEAE1BFA8CFD591A2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_4CC3509F71D47443B15941CABB9FB245" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_E0A24BFA11AB3044C761E3C573C63E35" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_A2ECB5B1C76C7E107370542EE58E7B69" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_5753B720062CAD52F12B916125947BE1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0CD3F544A0F1D9D27CC36C5B7338C984" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_ACB2FA4C64E6218003881DB86FAE60CD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0E4CE33347A3FAB993941A4812B2F6B6" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_87BB8990111D99E1991964B5E9453719" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C5FBC84433A48A25627AD60ACD70CFA9" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_FD863E6FF01F2BA099CEAB21C5ACF521" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_7D2B813F721C14D9263F358A347E4DB1" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C8501F70BD18823ADF0B44FD24726755" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_61849C8C6915542843CBD31931EA4B7D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_78D95902EB68CD5C725D065687322710" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_183A4519C9E8986D056A0C2787481B51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C33C1C1F529792A6FCED9909D574C98D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_1A985B403E0ADE87D5D97462E7FA2488" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_522E9A0AA15C4225890A6A012B67D68E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BFF5FBE47C6B1DE189FA9A70CF61B8C6" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_ACD09928E29693C35BCC700E40951AEB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9C09304E7C7F19C2F28AD3B24A77B8CB" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_3C74C50A2447FC10944F3AAF2F4D8761" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_6D7D1CC64ED582F3FEB317DD60A477BB" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_380884DD2753A301C82737899E085AE4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_AA74C26107BC58CE2108D0D6677BECE1" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_46364AC2527B05575C1A7DC2C4A003FE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_1823E60B0D33421C8F4089342F601B79" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_7A001E5060F007B76553095966B3DD3A" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_21E68C1A94E92853B17A098E208A63D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_969FF7796C8282207A4D873D682F5872" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D499B5E2D6DE522B7109B3BAD3DECCE3" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_632E1A907456D75E4CF299805F283F0B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_EA48A68BB9E85EB5D21359CD934CDE34" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_06032F260A8DEC8FFD196041FDAD9A14" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_6FB82D0B427BFCBADED30AE11135C003" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_A76A17A95231B9F651C86B8747D361A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_F209B5DB23FDBB924E78243E39A49B2D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_4D87719995DCEF2E9313F8B3B95B7274" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_A0CAEAFA8AF476AE9779326B71CAD208" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_FA4CE78BBACB594C45D2BC3C566134D0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_AF99149F6847CCF5CD6229824629EA85" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_40D856E4B63255C97FB18B2EEB03C7C2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_F2F97D454D8D47918C9652A80088AC3C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_2B9CF255BD67578217BF36A742BD97A5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0BA12C6A7503EDB0C827A7D2373B43FE" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_190A2E93252ABCDEC68945E28E95031C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_46E2D82F69CA53E5A7535C5CEF01B095" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_846C48CA0D30791957B414299D783B4D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_5F8961CAF53A17A41F9EE6D7C710F30B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_168090D595D80D0A86442948560A106E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_319B5098468C036CF599E7E6019DC0A2" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_19ECA032F766EDFBA4314CBFD71873F8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_4A127626130436A8485B10D9D040C3F8" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_CC37EBF295A7332587DED92372BE8CF7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0D7A68671100C8E976D700977069A1AD" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_9987ECEB75A5EEE30DB350CE077CA265" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_76B8C3FD98024834EB912F222C3CA7E9" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_5BFFFF7FD7100CE916F389F8186B56E4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_DEC1BF0706D9BD9911592BB55DD70651" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_DBD1C464BFA47A6D07EF347445419ECD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_F1D679BED009170305B2519CD78CA300" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0A56519FAC61F9C6C691F628C8318F4C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_AA364DFC6D0E65A0D2C0BE1273C187A6" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_9404A6EA40F4A7894ED3D517521AF25C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_5D7C213BB876991F90D99766421A9C5B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_BDC9386BC0BF26599814EBEEF06578A8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_E34DEC63EF5AECFFBF8716A00D7C2056" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8A42A9274EFB189CCEE03074E79EB5DC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_1E31CB5CB98AC6D1CA22D47553042578" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_EEC77B01CA74259E38B4BF930D62BBCA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3AF27C2F3C6F5550735A7366B1261EFF" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_342A6CE3EF5E8C5170AA6C400613FF5B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_5B9E3DEC263DB384D2E4044422BBD36F" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_5AECE1E39D8F63266306FA5F9F3057AC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_DFF757D14EB882CB71FA8D0C55AB8BF8" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_1A2539992C2B3C1C53911F2EA24845ED" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_E332A6F95C8C5F2A442A4197B94A81F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_887286F4C29C1F45FAF43D3E3165DD9B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_CB5653876B1E7402162D97E2078FD8F7" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_9CA2658ACD8741F43E77E56D9F53DCD5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_588842B28A75F1BD35C5CDDBB0F123D6" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_F9D45EB45753FAD80DFD1C6F7ADF3844" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_5B33C61F5CC73F6B67F7641FDCA19E32" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_32F0360562E0F4E46ECF81F6FFE26EC6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BBD6FAD81E26ECE30F40C28556D906CE" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D712A5E055A3EC30011B6E0718A0BBF1" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0D1200924CA21F19FF53C62B7B8354FF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_13C0B21BEF168B0190E20DD315BFA3E0" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BA6689085C8CEBFE45F4F582C7CA6BE7" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_002B35A47F685C337FD43749C4416446" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_2024DBA65B2E695BEA2FE6EBD3454FF6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C764A96E38DC71EE64244082FCEF9637" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_5193F4E9C8FD027F6DA8742BC80C4D34" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_24A11F29D1E1054DAFFED7697AF88CD2" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_784ACDE198073C9AECF536BBDD06E2CA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_214C0A61A7B4A26FDBEB0788B62D0089" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C3EDD553A32A0F38069B9AC4058185CA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D142F4C5A6246588440689DF4036E8F2" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C2C7C844CF816EEE05C94D4477A24455" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_5CC8DF7128C49B8D92F54987837BE0D6" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_DE4CD1E105AF4B87366D07C46F4C2663" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_08F2AD45918FE7A8AD9BEDB57716F237" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8A2729C4F323C0E2EFEB67AC17F2900C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_13B3F1052A56A2AA76DB87CEE3FDEE7A" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B16E542C910B2E0537C34147E3F2A772" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_791F7F6F4B02DF11734DF494ED085D71" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BB9997D921573F9889C5EB78392A5460" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_2903BC31F1FC409428A55014360EA7D9" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_792C41CB6C66CA56AB56A89516AF727F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_234A61A2BB88F06DD30B16DE9F66E565" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_AC9B28E0D99E4F1F515BA0BBE9459CE5" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_9CF01A79ADC6DB936EE336401703AAA4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3A63E9B6336859FB898A1207E36A64D2" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_71DB4173D0A1DE774C90437928F85735" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0F6D284DDECB11F82AD5814134FEAE6D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_779089C4535D1F4BE27BCFA5629CC6B4" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_18F64B11FA2B3AF2FD7BC1EBF31D85A4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3032BD5A329D929A96C6738327C6631A" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_AE2D7B02724DDA7F2129EFCC431086A2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_5DECA8430E15A27DB07E2F19865BE42D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_DD9267F304CD86680605583251BC35EC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_5C8A40195D2FA713BE376F012B30D161" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_9545603599F3A85DE070D94A8CE1F201" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0C35F03470F41E63CFC2314557D58C9F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_88A2108E2171BF0E64073F268672989C" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_1227F5127E12287474AC428519CF1F5A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0D7CAA399994014550D649BDB391BF30" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_8BB9413DD232277D8EC384477B23E618" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B28C76E809A91245E9FA657909D423F4" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_45E53FB27049D042E5DED373E26F270F" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_A4134201B9E55E9C7D6CC50C10CFE337" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_5F082BC1113FF660F20E98CE2AC3095D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_86A788B950814C0859DE3243B664552F" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_592B16F8087356012F59D4A1C7745E4E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_3EF2B71DFA0287A135EC6D2EED20D989" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_CDC4036AF5D00A8FCCF3DE0224C4F001" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_368297E8E6732BD28622CB59EE965020" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_B4DC9680AAC199071BAEC00BA7B52A9D" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_82A07788C4F0390092FA707DCB5CA209" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_1D6A410DBAE3AFD9E7D7475D8379E809" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_0D402C75C4105E49FA08F1F21522121B" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_209CC981198B092EEADFA404D4E99DE1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_195464F81556BDF6BDAF089A424D04BD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" + "MsmKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" + "OwnerKey" = "8:_686BCF63771C834DC355237F7B3A61CC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" + "MsmKey" = "8:_95E95D512F7447DAA4C6FD50CE087AEA" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" - "OwnerKey" = "8:_32A789F4BBF15B847138B319652834BF" + "MsmKey" = "8:_963AEFEC7C58473BA4C5A9549624357C" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7DA9550944E242C8B9D670E9FE8EE460" + "MsmKey" = "8:_963F226EF01B42FABD1DD7824A0D8DEC" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7DC4F8BA717948CE884330DF70FD7405" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_963F4FE28111B47846C1A486F61E160E" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7DFD03C66B7145EBA88D17620A62B6F6" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_963F4FE28111B47846C1A486F61E160E" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7E5F4EFD051649429B98C06216211363" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_963F4FE28111B47846C1A486F61E160E" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7E911BF5E2F54F589649B545BC27AB61" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_963F4FE28111B47846C1A486F61E160E" + "OwnerKey" = "8:_7BEAA3F3CE3A41E1B5E7AA81B64066D9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7E986E1C7266444CA9453CB2D8BD412A" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_963F4FE28111B47846C1A486F61E160E" + "OwnerKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" + "MsmKey" = "8:_963F4FE28111B47846C1A486F61E160E" + "OwnerKey" = "8:_DBB40A1C41C34EFFA1F4D9EDD04CA79D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_963F4FE28111B47846C1A486F61E160E" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_EE657F070AC54DDCBA5CD56C53F3FFDC" + "MsmKey" = "8:_963F4FE28111B47846C1A486F61E160E" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_6CAF4782BEEB4150B37C0293B79F0069" + "MsmKey" = "8:_963F4FE28111B47846C1A486F61E160E" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_0780B22F54AB492BB65CAEE79E2A59BA" + "MsmKey" = "8:_963F4FE28111B47846C1A486F61E160E" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_963F4FE28111B47846C1A486F61E160E" + "OwnerKey" = "8:_21E68C1A94E92853B17A098E208A63D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_963F4FE28111B47846C1A486F61E160E" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_963F4FE28111B47846C1A486F61E160E" + "OwnerKey" = "8:_9CA2658ACD8741F43E77E56D9F53DCD5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_E129F749CD8340D59FB77411E5B5DD52" + "MsmKey" = "8:_963F4FE28111B47846C1A486F61E160E" + "OwnerKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_963F4FE28111B47846C1A486F61E160E" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_969FF7796C8282207A4D873D682F5872" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_969FF7796C8282207A4D873D682F5872" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_969FF7796C8282207A4D873D682F5872" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" + "MsmKey" = "8:_975852014F5B4FACBBDF5C881DA76681" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_97A8C91BA51847EE91CFF4DB840161FA" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_97ADDCFDE8E14E329E2E053CF1CBD24E" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_588842B28A75F1BD35C5CDDBB0F123D6" + "MsmKey" = "8:_97B853BD0FBD4246A35CA4AC6699E141" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_97FB68AE477D4EE690B0048F7FB40089" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_45E53FB27049D042E5DED373E26F270F" + "MsmKey" = "8:_9818F96B07084AA4B619A0A41EE9C6B5" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7EC2005B277E210206C82E36034DB2AF" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_9821F745AE6C45F7B26812A8F0D23292" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7F1E4F7129DA41D9AE76CB81C034F7F4" + "MsmKey" = "8:_98BDFB20000E4419AA0EA3BD23B4CE59" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7F7DC9EE872922FE6E02BFEC0494DEA5" - "OwnerKey" = "8:_F2EF36872A68BB7BF9299928E8570A54" + "MsmKey" = "8:_9950BFEA0E494DFDBF222F8D162723FB" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7F7DC9EE872922FE6E02BFEC0494DEA5" - "OwnerKey" = "8:_96FB075AAC644471A449F39F62493516" + "MsmKey" = "8:_995CD17ECC5845B38F190F2E3610E30E" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7F7DC9EE872922FE6E02BFEC0494DEA5" - "OwnerKey" = "8:_C46526CAB5A24576884D6EEAAB340FDE" + "MsmKey" = "8:_9987ECEB75A5EEE30DB350CE077CA265" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7F7DC9EE872922FE6E02BFEC0494DEA5" - "OwnerKey" = "8:_5D2A8D17730443A78B5C1B404BCB0FFF" + "MsmKey" = "8:_9987ECEB75A5EEE30DB350CE077CA265" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7F7DC9EE872922FE6E02BFEC0494DEA5" - "OwnerKey" = "8:_DE408A593CAD828A7E5F24C6BDC31BE0" + "MsmKey" = "8:_9987ECEB75A5EEE30DB350CE077CA265" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7F7DC9EE872922FE6E02BFEC0494DEA5" - "OwnerKey" = "8:_713C184BE2CA45D0BCA6495686EC6078" + "MsmKey" = "8:_999A55ECDBA24B00AEE2A5A207F8030D" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7FE3CA178C1E4CD49C7B2908F287A98B" + "MsmKey" = "8:_99AD114962244FAE9D19BEFCFAAB4FAF" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7FF7FE0D54E74328BB96BC3FCCE672CF" + "MsmKey" = "8:_9A524C86B3B34446AC4F83D726A76918" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_82A07788C4F0390092FA707DCB5CA209" + "MsmKey" = "8:_9A70E147EEAD7EA18E5190D6B05B2222" + "OwnerKey" = "8:_E5F605D98C8CBEBB00C09D5EC8C8127B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_C739986D38D4428AA8E16DD93CA8F2C8" + "MsmKey" = "8:_9A70E147EEAD7EA18E5190D6B05B2222" + "OwnerKey" = "8:_74C989C8B18A40A885321F7F8188A83A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_19FE79ED86B14135BF9ABBC86A76C182" + "MsmKey" = "8:_9A70E147EEAD7EA18E5190D6B05B2222" + "OwnerKey" = "8:_8A1BBE2E8DEC4DAFBCC14BDC7E027B48" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_9A70E147EEAD7EA18E5190D6B05B2222" + "OwnerKey" = "8:_55EFD5C9477B4C7EA11F78E3928B0DC7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_9A70E147EEAD7EA18E5190D6B05B2222" + "OwnerKey" = "8:_E8BE71CCC5174E3DA8ADD6585C0D9570" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_B6288F8D68A9416A92DC90E280B06EA2" + "MsmKey" = "8:_9A70E147EEAD7EA18E5190D6B05B2222" + "OwnerKey" = "8:_A3B2DD710F4843D781A8372B4443A708" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_9A70E147EEAD7EA18E5190D6B05B2222" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" + "MsmKey" = "8:_9A70E147EEAD7EA18E5190D6B05B2222" + "OwnerKey" = "8:_E6E84499A1CB4A6A265D8C05BD0FFA40" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_9A70E147EEAD7EA18E5190D6B05B2222" + "OwnerKey" = "8:_1EF904821BA64F522142ACB4C8E61033" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_9A70E147EEAD7EA18E5190D6B05B2222" + "OwnerKey" = "8:_7C840CCB2F2C1EA4816FE487B5E752DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_A73B77AB52A14A06924029907A4E19B1" + "MsmKey" = "8:_9A70E147EEAD7EA18E5190D6B05B2222" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_DF914A3690054B6CB9B7658ACB9DE4BF" + "MsmKey" = "8:_9A70E147EEAD7EA18E5190D6B05B2222" + "OwnerKey" = "8:_053845DF2A80A60A9B8FE3E1BF88DECD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_8620B1F0C2FA4D348B9E63F0BE9FA1ED" + "MsmKey" = "8:_9AA5085F56494F5FB880DDAE22805147" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_9AF4DF764E3D402FA7B373767289455C" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_9C39394819CD481F9B4B7927EFCE7082" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_9C4BE12B0CD74B7CBBD18F04CB7C4D82" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_9AF4DF764E3D402FA7B373767289455C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_4D4C37D93E3B414C8FE99DBB8E48FBB6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_243FEEBC941A41DD9C5F736248AFD819" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_CAB5C2A388B34D1F874E72AC38354BFA" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_8146F9A2DB6A4D498ED4A46C80ECC662" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_80FAF08BE91DC1EC96DC613154D44F7E" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_7BEAA3F3CE3A41E1B5E7AA81B64066D9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_9AA9B1640404D837BA8E590A2A7B3FDE" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_B02AC42471634FDDB8675ACE5C4A140D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_32EF223E0EFB40A88EBE556C8EAA4AF3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_F1D679BED009170305B2519CD78CA300" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_B873BE40B7AA4D4FACE3565666F45F51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_F5FE62D38D5C4D30A5276F398ACE2208" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_7776F0B3F25D4F958A79A3B702D72900" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_801C6A9E7101F6AFD7A06D87FCCF4773" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_87840206D46747A097E4ED2B15D78CFA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_80443D2C922030B6CD68CCA745F0E5B1" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_78876DFFB8F54757A7E7CD5F6937D821" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_80443D2C922030B6CD68CCA745F0E5B1" - "OwnerKey" = "8:_67B28C0C25A549578A5E328EA971DE36" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_6E83BDD242CD403E88C6174D59C0F7D4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_80443D2C922030B6CD68CCA745F0E5B1" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_EB98E04073DF4D0A81057B1F53EC6632" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_C0963962D778472C925FDA3E346DFD0F" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_DBB40A1C41C34EFFA1F4D9EDD04CA79D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_0ADF9758C9EA4C82A9116965FD5C824A" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_DB6DA2D86C6F4DC68545755D67200523" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_D132FA26F719439394D7C487765D7801" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_67B28C0C25A549578A5E328EA971DE36" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_0780B22F54AB492BB65CAEE79E2A59BA" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_E9B8002F9879403F994F719F640BFF20" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_89C50D3BE2F9490EBB5D778B96C32C9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_9F9DBDF1BE674422A100529C9BAE0E4A" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_9B2EFE50DAD1458E8932CCF4310BEC9F" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_E129F749CD8340D59FB77411E5B5DD52" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_84381ED1D01A444DA4B139C706F80BC9" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_21E68C1A94E92853B17A098E208A63D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_1947F3829A764DD2A928A23101DE2206" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_9CA2658ACD8741F43E77E56D9F53DCD5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_F9D45EB45753FAD80DFD1C6F7ADF3844" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_8620B1F0C2FA4D348B9E63F0BE9FA1ED" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_AF2FD3529ACE48B6A5497A6197A020AA" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_0D1200924CA21F19FF53C62B7B8354FF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_80443D2C922030B6CD68CCA745F0E5B1" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_B493379D394F49F2A257ACE3C4BEF216" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_0912E1C1C1F24DDCA531C6864D1665A8" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_D27991107EA14C1C8B4A246C7658161E" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_5C8A40195D2FA713BE376F012B30D161" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_818C90D1A56563131B63B1CA3CA576F3" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" + "OwnerKey" = "8:_1227F5127E12287474AC428519CF1F5A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_A5281AE19E3C0466830CC797A9C17602" + "MsmKey" = "8:_9C76510F27914A629C0F3A36FD75F5E9" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_A2C4BBDA6C653F878CF9F09DDB19EB67" + "MsmKey" = "8:_9CA2658ACD8741F43E77E56D9F53DCD5" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_9CA2658ACD8741F43E77E56D9F53DCD5" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_F1D679BED009170305B2519CD78CA300" + "MsmKey" = "8:_9CA2658ACD8741F43E77E56D9F53DCD5" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_9CA2658ACD8741F43E77E56D9F53DCD5" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_588842B28A75F1BD35C5CDDBB0F123D6" + "MsmKey" = "8:_9CA2658ACD8741F43E77E56D9F53DCD5" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_24A11F29D1E1054DAFFED7697AF88CD2" + "MsmKey" = "8:_9CF01A79ADC6DB936EE336401703AAA4" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_214C0A61A7B4A26FDBEB0788B62D0089" + "MsmKey" = "8:_9CF01A79ADC6DB936EE336401703AAA4" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_9CF01A79ADC6DB936EE336401703AAA4" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_5CC8DF7128C49B8D92F54987837BE0D6" + "MsmKey" = "8:_9CF01A79ADC6DB936EE336401703AAA4" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_9CF01A79ADC6DB936EE336401703AAA4" + "OwnerKey" = "8:_B41CF285191B458BB15E99523C5B2A40" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_779089C4535D1F4BE27BCFA5629CC6B4" + "MsmKey" = "8:_9CF01A79ADC6DB936EE336401703AAA4" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_9CF01A79ADC6DB936EE336401703AAA4" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" + "MsmKey" = "8:_9CF01A79ADC6DB936EE336401703AAA4" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" - "OwnerKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" + "MsmKey" = "8:_9CF01A79ADC6DB936EE336401703AAA4" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8067A6F0C6794753B3BBDA35A9513D8E" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_9CF01A79ADC6DB936EE336401703AAA4" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_80A5A7F152874D0C9FD7D6BC0DC163BC" + "MsmKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_80FAF08BE91DC1EC96DC613154D44F7E" - "OwnerKey" = "8:_60307A9582FE2D7618125043293A02AB" + "MsmKey" = "8:_A03E7BC3D09F4E36BCFAFE25E18348EC" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_80FAF08BE91DC1EC96DC613154D44F7E" - "OwnerKey" = "8:_BC55DE2D96EE4BE7B63A10E87BA44D07" + "MsmKey" = "8:_A1B9500035D84C3FA072C1A6EF911D37" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_80FAF08BE91DC1EC96DC613154D44F7E" - "OwnerKey" = "8:_53C949C71D0F422B8978AD416438B086" + "MsmKey" = "8:_A1E352E2ED54416F9149690F55C47039" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_80FAF08BE91DC1EC96DC613154D44F7E" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_A31F3F958D4547698677DD3F80B8FB27" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_80FAF08BE91DC1EC96DC613154D44F7E" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8172857E0F7E4A0486A9D6A0F60B58ED" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_818C90D1A56563131B63B1CA3CA576F3" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_F46463168E28445994747470940851B5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_818C90D1A56563131B63B1CA3CA576F3" - "OwnerKey" = "8:_866E8D70379E4EC8B625FFE1F47FD889" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_9AF4DF764E3D402FA7B373767289455C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_818C90D1A56563131B63B1CA3CA576F3" - "OwnerKey" = "8:_9C7BC3B28FEF0D6A3C7DF01D18722E6C" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_58C396CAD94644E493315C2801EC4AF5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_818C90D1A56563131B63B1CA3CA576F3" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_C630F7E8EA4840BAB1B2559D71483F8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_48FEC7295A1F49AFA9658B28040D82D0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_5B538E2AD9BE4EEE81436217036C9D66" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_F15129EDC4B8463491B8B0C0C7DC2AE4" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_8DA7C6C81DDC4F94A07D257BE53DF8B3" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_8146F9A2DB6A4D498ED4A46C80ECC662" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_0ADF9758C9EA4C82A9116965FD5C824A" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_F5FE62D38D5C4D30A5276F398ACE2208" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_AD573111A7F14C01ABAD569CED96D350" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_C5B0AE74BFAE45BA893232F4A15B6C27" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_87840206D46747A097E4ED2B15D78CFA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_78876DFFB8F54757A7E7CD5F6937D821" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_71A6F30AD21A45D5BFC23EC8EF3B493E" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_C17E953CE554458FA3D973414751D2CC" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_81776EE3B0D14F098DEF71346C834416" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_B6288F8D68A9416A92DC90E280B06EA2" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_A5C386CA7E4D475C8869A687EBEF8A04" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_B1849DE105A443F195D7510B391D0629" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_BAF05666A62E4063B67A990DBB654458" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_FC262487CAE543089CB587C8166C581E" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_0327CD370EE34AA4A8DD54EBBF99AC9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_55842097A1B740A79E6644F235B0C1AF" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_DA87F4E078FD438E9CBA27D5FD4B0543" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_3B72D4DBB2DB48BFAD0801684500E08D" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_ACC9D7826CBE472A8766CAF892A6B8A9" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_DECDF56F984E473E92323CACE22A1C1C" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_638ED98CAD46C3F510314D5BA18F5FFA" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_2E3DA24B734E4A11A8D0E0753635C7AE" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_1F07CC99CC9947599D83707F1D15766A" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_F8B53535DABD4E7D5E5951C921AC682A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_25E58EB806A4EC8427C4EB8A218A5087" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_0D1200924CA21F19FF53C62B7B8354FF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_DF914A3690054B6CB9B7658ACB9DE4BF" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_8620B1F0C2FA4D348B9E63F0BE9FA1ED" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_24C2C186651045C29ABC82B522AF0835" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_DE4CD1E105AF4B87366D07C46F4C2663" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_14D46FEB93FA4D299E6056B1E348312F" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_E74C8D77D5E37A69B6984831650003C7" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" + "OwnerKey" = "8:_195464F81556BDF6BDAF089A424D04BD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_7B84FC380764415ABB407E76018A6C1F" + "MsmKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" + "OwnerKey" = "8:_7BEAA3F3CE3A41E1B5E7AA81B64066D9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_E0A90872657427483F053288CC41F7BF" + "MsmKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_D27991107EA14C1C8B4A246C7658161E" + "MsmKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_385E4C4F5EED8818E2DF6396C14184B2" + "MsmKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" + "OwnerKey" = "8:_9CA2658ACD8741F43E77E56D9F53DCD5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_F1D679BED009170305B2519CD78CA300" + "MsmKey" = "8:_A373F853496F48BCB73085CEC13477DE" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_13C0B21BEF168B0190E20DD315BFA3E0" + "MsmKey" = "8:_A382D02B948C4B54803DC488B33F0B3A" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_BA6689085C8CEBFE45F4F582C7CA6BE7" + "MsmKey" = "8:_A3B2DD710F4843D781A8372B4443A708" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_13B3F1052A56A2AA76DB87CEE3FDEE7A" + "MsmKey" = "8:_A4134201B9E55E9C7D6CC50C10CFE337" + "OwnerKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_A4134201B9E55E9C7D6CC50C10CFE337" + "OwnerKey" = "8:_4D4C37D93E3B414C8FE99DBB8E48FBB6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_B28C76E809A91245E9FA657909D423F4" + "MsmKey" = "8:_A4134201B9E55E9C7D6CC50C10CFE337" + "OwnerKey" = "8:_7A58EB8E4D024E9ABEEF4643AD40C308" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_A4134201B9E55E9C7D6CC50C10CFE337" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_A4134201B9E55E9C7D6CC50C10CFE337" + "OwnerKey" = "8:_0327CD370EE34AA4A8DD54EBBF99AC9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_3E7D8C7B55035D5CAD163D66E6F54929" + "MsmKey" = "8:_A4134201B9E55E9C7D6CC50C10CFE337" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" + "MsmKey" = "8:_A4134201B9E55E9C7D6CC50C10CFE337" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A07788C4F0390092FA707DCB5CA209" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_A4134201B9E55E9C7D6CC50C10CFE337" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82A6CF9F4FD84C679D36AEEDBB1FCE86" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_A4134201B9E55E9C7D6CC50C10CFE337" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82D3BD935404854CA720F54A2B42897F" - "OwnerKey" = "8:_2DD98C1858E945F19BA2B91B316B07A1" + "MsmKey" = "8:_A4134201B9E55E9C7D6CC50C10CFE337" + "OwnerKey" = "8:_5C8A40195D2FA713BE376F012B30D161" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82D3BD935404854CA720F54A2B42897F" - "OwnerKey" = "8:_B5127E434BF4494E8356C0D8F2633803" + "MsmKey" = "8:_A54C36C6AF724C4298C1C44B711EEBA1" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82D3BD935404854CA720F54A2B42897F" - "OwnerKey" = "8:_DAA20B5745500E7FDCA65B7ABE6A042B" + "MsmKey" = "8:_A599A7EE92D343398580075929DFA7A1" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_82FB452E40D54EE1B060D771EF4AC513" + "MsmKey" = "8:_A5C386CA7E4D475C8869A687EBEF8A04" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_83C9DE3A861D9F898B96B6FCAC6B35DB" - "OwnerKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" + "MsmKey" = "8:_A5CBCB7AEA5649EF8D26C13CD74B09E2" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_83F0C7A493D8435EAB296C73FA970749" + "MsmKey" = "8:_A5CFE4C8CD314D6B81626D8C947B6558" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8426152F661C4C81AB2C8349F4F1D286" + "MsmKey" = "8:_A65E3D96F4DD434BA582E3757D43997B" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_84381ED1D01A444DA4B139C706F80BC9" + "MsmKey" = "8:_A693C02331474E77A4360436CBF86CAD" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8446B116F7184398BD545B60AFF3FC46" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_A76A17A95231B9F651C86B8747D361A7" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_849E935871D84248B313C64D1344ECEC" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_A76A17A95231B9F651C86B8747D361A7" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_84D1E150F94A4734AF69639266E603A9" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_A76A17A95231B9F651C86B8747D361A7" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_84DDF0EA2A0049A391FCE138D9CB5660" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_A76A17A95231B9F651C86B8747D361A7" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_857F5B9F107D4EE0A084B7EFFF52D005" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_A76A17A95231B9F651C86B8747D361A7" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_85B399791CB74ADD9F8C48730A9028FB" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_A76A17A95231B9F651C86B8747D361A7" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8620B1F0C2FA4D348B9E63F0BE9FA1ED" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_A76A17A95231B9F651C86B8747D361A7" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_866E8D70379E4EC8B625FFE1F47FD889" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_A76A17A95231B9F651C86B8747D361A7" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_86A788B950814C0859DE3243B664552F" - "OwnerKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" + "MsmKey" = "8:_A7B347FCEC623457F1FF4116DBE26DE9" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_86A788B950814C0859DE3243B664552F" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_A7B347FCEC623457F1FF4116DBE26DE9" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_86A788B950814C0859DE3243B664552F" - "OwnerKey" = "8:_0205F5D1886848139710911DD96B405B" + "MsmKey" = "8:_A7B347FCEC623457F1FF4116DBE26DE9" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_86A788B950814C0859DE3243B664552F" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_A7C7E66B124BB4B955D0308A3B882532" + "OwnerKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_86A788B950814C0859DE3243B664552F" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_A9035D942941788E21A775971D3379AD" + "OwnerKey" = "8:_3F7191903485AE336DDBE8F265888B67" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_86A788B950814C0859DE3243B664552F" - "OwnerKey" = "8:_E0DD91B6820043019824432F3CCAC570" + "MsmKey" = "8:_A9035D942941788E21A775971D3379AD" + "OwnerKey" = "8:_FC1B3053EE004D9CA842FE7ACAB59109" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_86A788B950814C0859DE3243B664552F" - "OwnerKey" = "8:_02848728AD0D442B974E23D647DB20B8" + "MsmKey" = "8:_A9035D942941788E21A775971D3379AD" + "OwnerKey" = "8:_F2BF868F37FD4EBB9EEE93828F6B8B80" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_86A788B950814C0859DE3243B664552F" - "OwnerKey" = "8:_BFCE0B7A76304ACAA2D84D64CE0EC7AB" + "MsmKey" = "8:_A9035D942941788E21A775971D3379AD" + "OwnerKey" = "8:_FEEDC4F58B6148F79B34BCD14DEF1B1B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_86A788B950814C0859DE3243B664552F" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_A9035D942941788E21A775971D3379AD" + "OwnerKey" = "8:_D61738826E13F256E5D5365099EA0D68" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_86A788B950814C0859DE3243B664552F" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_A9035D942941788E21A775971D3379AD" + "OwnerKey" = "8:_8765771DDE4A840EC489FFEEE5E7780A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_86A788B950814C0859DE3243B664552F" - "OwnerKey" = "8:_A0CAEAFA8AF476AE9779326B71CAD208" + "MsmKey" = "8:_A959687D5A594B038895659012B722D7" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_86A788B950814C0859DE3243B664552F" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_A95F4E8A504CA6B85FA53C01B8AA56B5" + "OwnerKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_86A788B950814C0859DE3243B664552F" - "OwnerKey" = "8:_B16E542C910B2E0537C34147E3F2A772" + "MsmKey" = "8:_AA98FEAE530E800F83819D70C36CAF58" + "OwnerKey" = "8:_0F1F0D6286EEEB4EC6814F48A7D049A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_86A788B950814C0859DE3243B664552F" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_AA98FEAE530E800F83819D70C36CAF58" + "OwnerKey" = "8:_FC1B3053EE004D9CA842FE7ACAB59109" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_86A788B950814C0859DE3243B664552F" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_AA98FEAE530E800F83819D70C36CAF58" + "OwnerKey" = "8:_FEEDC4F58B6148F79B34BCD14DEF1B1B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_86A788B950814C0859DE3243B664552F" - "OwnerKey" = "8:_5DECA8430E15A27DB07E2F19865BE42D" + "MsmKey" = "8:_AA98FEAE530E800F83819D70C36CAF58" + "OwnerKey" = "8:_35037DF8DE6149C18293212108B27384" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_876A43B08BFA423BA8F64AF0A220CC03" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_AA98FEAE530E800F83819D70C36CAF58" + "OwnerKey" = "8:_3F7191903485AE336DDBE8F265888B67" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_AA98FEAE530E800F83819D70C36CAF58" + "OwnerKey" = "8:_D61738826E13F256E5D5365099EA0D68" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_87D4C6754BA84A78948B93C0355CE798" + "MsmKey" = "8:_AAD83CEDDDC54AAFB0655F23A6225024" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_87D78666028C4FEA88D134AA4B28F555" + "MsmKey" = "8:_AB23A8CCABA4466FA9A3CEF8F88BFA2C" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88A2108E2171BF0E64073F268672989C" - "OwnerKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" + "MsmKey" = "8:_ABB9C09F16504908BBEF4AF3BF4465BD" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88A2108E2171BF0E64073F268672989C" - "OwnerKey" = "8:_D132FA26F719439394D7C487765D7801" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88A2108E2171BF0E64073F268672989C" - "OwnerKey" = "8:_F62AEFC871D44831804BCD4DF25C23F0" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88A2108E2171BF0E64073F268672989C" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88A2108E2171BF0E64073F268672989C" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_55F9FC11F41F4C3EBF98220500974FBF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88A2108E2171BF0E64073F268672989C" - "OwnerKey" = "8:_818C90D1A56563131B63B1CA3CA576F3" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_4D4C37D93E3B414C8FE99DBB8E48FBB6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88A2108E2171BF0E64073F268672989C" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_7A58EB8E4D024E9ABEEF4643AD40C308" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_19FE79ED86B14135BF9ABBC86A76C182" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_0ADF9758C9EA4C82A9116965FD5C824A" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_8146F9A2DB6A4D498ED4A46C80ECC662" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_9F9DBDF1BE674422A100529C9BAE0E4A" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_81776EE3B0D14F098DEF71346C834416" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_6B59D77837404D169557D13FAF9B8F58" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_9950BFEA0E494DFDBF222F8D162723FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_76060290214147F1808CF4DF19B364E0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_975852014F5B4FACBBDF5C881DA76681" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_F6BAAF5364A4477F8AB5AC0EC2E90C05" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_BAF05666A62E4063B67A990DBB654458" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_88469FDDED8C4BF399DB4ABD4605D307" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_CAB5C2A388B34D1F874E72AC38354BFA" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_0912E1C1C1F24DDCA531C6864D1665A8" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_F05C2A6ABC3663BA3E2F3CF0A8A61AF0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_D27991107EA14C1C8B4A246C7658161E" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_9AA9B1640404D837BA8E590A2A7B3FDE" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_0D7A68671100C8E976D700977069A1AD" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_F8B53535DABD4E7D5E5951C921AC682A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_24A11F29D1E1054DAFFED7697AF88CD2" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88D5C8CD8340C75112D82131B6AF59AD" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88E2AB5CC52F4316862C7922C2C6031D" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_88FC171E99AC49839D76EF2DF1767E61" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8994F2ABBF4C4069AB4AA0C200209AA7" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8A9143138F81414DAA84CA0B6AF5D476" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8ACE14AFC519438F9F7CFA1E57E857AA" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_234A61A2BB88F06DD30B16DE9F66E565" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8AEA8B4F06244E8EB4329395A8C2E376" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8B357B058AA9E7346030D4EE55729A68" - "OwnerKey" = "8:_CA9EFFE3C824C0519F9E371FA2EEC3B6" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_5C8A40195D2FA713BE376F012B30D161" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8B357B058AA9E7346030D4EE55729A68" - "OwnerKey" = "8:_59E9FDC913F34D1FA5C8E2F066ABD4C6" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_0C35F03470F41E63CFC2314557D58C9F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8B357B058AA9E7346030D4EE55729A68" - "OwnerKey" = "8:_79CFE04F74314C5AAA631C8A6835BA7E" + "MsmKey" = "8:_ABE0597EE67D334D94800C5C16715381" + "OwnerKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8B357B058AA9E7346030D4EE55729A68" - "OwnerKey" = "8:_707F3FA8E34A4681B3ADF419E6724458" + "MsmKey" = "8:_ABF50DEAD3F44E68B097345106E563D8" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8B357B058AA9E7346030D4EE55729A68" - "OwnerKey" = "8:_FD80D55FA9E54BA1BB5D21F933BDB1C1" + "MsmKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" + "OwnerKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8B357B058AA9E7346030D4EE55729A68" - "OwnerKey" = "8:_B11750BFE84B4302859140E5DB4A6EF7" + "MsmKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8B357B058AA9E7346030D4EE55729A68" - "OwnerKey" = "8:_311C9D1D07FB4B038396A7DB0015BAF1" + "MsmKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" + "OwnerKey" = "8:_7A58EB8E4D024E9ABEEF4643AD40C308" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8B357B058AA9E7346030D4EE55729A68" - "OwnerKey" = "8:_D70666FC24FC4568897AD2D90357364A" + "MsmKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8B357B058AA9E7346030D4EE55729A68" - "OwnerKey" = "8:_47A0E1EF51BB4C9DB3A056522E4E57A0" + "MsmKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8B357B058AA9E7346030D4EE55729A68" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" + "OwnerKey" = "8:_B13A099F228149CDB35ED8B4D88ACEDE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8B357B058AA9E7346030D4EE55729A68" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" + "OwnerKey" = "8:_67415B187EDD4DB2AF1B659373386D94" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8B357B058AA9E7346030D4EE55729A68" - "OwnerKey" = "8:_62E2EB85757ECD521EFB47ED25F86AEC" + "MsmKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" + "OwnerKey" = "8:_532344DBAAF142C2AFF7F262E5522497" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8B357B058AA9E7346030D4EE55729A68" - "OwnerKey" = "8:_5B6F8058482CBAB6EDE2388612B42198" + "MsmKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8B357B058AA9E7346030D4EE55729A68" - "OwnerKey" = "8:_BC8A1B78A0D1492B3C3EFB76715FC417" + "MsmKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" + "MsmKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" + "OwnerKey" = "8:_A76A17A95231B9F651C86B8747D361A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_6E350884A4BF44159F89904F4FDF6D50" + "MsmKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" + "OwnerKey" = "8:_8A2729C4F323C0E2EFEB67AC17F2900C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_99C527251870413C95F2B9A8CF693728" + "MsmKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_FF838842077D44EAA2A6348E18D08E79" + "MsmKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_0B60CEFE230E4633B1FD838B2E9E4D46" + "MsmKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" + "OwnerKey" = "8:_AE2D7B02724DDA7F2129EFCC431086A2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_8446B116F7184398BD545B60AFF3FC46" + "MsmKey" = "8:_ACB2FA4C64E6218003881DB86FAE60CD" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_ACB2FA4C64E6218003881DB86FAE60CD" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_ACB2FA4C64E6218003881DB86FAE60CD" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_0AD2B80BD2AC492DB97EE4C5ED1BF5F8" + "MsmKey" = "8:_ACD09928E29693C35BCC700E40951AEB" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_ACD09928E29693C35BCC700E40951AEB" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_ACD09928E29693C35BCC700E40951AEB" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_D4EC43B9F9144598017136DE430174D9" + "MsmKey" = "8:_AD15467D447B62DDE1BD96FF2B091C31" + "OwnerKey" = "8:_1F05C5740019436CA4072317066FB1AC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_AD15467D447B62DDE1BD96FF2B091C31" + "OwnerKey" = "8:_730CEE37D78449FC89EBFC526A39C7D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" + "MsmKey" = "8:_AD15467D447B62DDE1BD96FF2B091C31" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_AD15467D447B62DDE1BD96FF2B091C31" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" + "MsmKey" = "8:_AD15467D447B62DDE1BD96FF2B091C31" + "OwnerKey" = "8:_DD6992CD0ACCFF6B889A1ADC7D2DAE43" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8BB9413DD232277D8EC384477B23E618" - "OwnerKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" + "MsmKey" = "8:_AD15467D447B62DDE1BD96FF2B091C31" + "OwnerKey" = "8:_E3624B09B1B18A0909D083D27DB90604" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_AD573111A7F14C01ABAD569CED96D350" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_AD652B25F4FB47219D9D111AD130AC03" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_C5B0AE74BFAE45BA893232F4A15B6C27" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_7DA9550944E242C8B9D670E9FE8EE460" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_8D916F703BFB47DEB61E0FF69D9F6189" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_C630F7E8EA4840BAB1B2559D71483F8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_2E3DA24B734E4A11A8D0E0753635C7AE" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_716F98D87D6841DC8B6B346A171CE780" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_14D46FEB93FA4D299E6056B1E348312F" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_CD8824E528414EBDA5DCE3BA0A9528F8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_CCB130078DDD4B288794D03E93E5D82B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_E6D8C4B69849495883A1497295063547" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_BB9997D921573F9889C5EB78392A5460" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8CED62AA275E4E2790356B9C26CE8DED" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_CF64DAC62FED43EE9B6F411BE5FBF065" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8D462AAC0EC94F7D9A54CAAF190F9061" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8D916F703BFB47DEB61E0FF69D9F6189" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8DA7C6C81DDC4F94A07D257BE53DF8B3" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8DB50A0A96D84033B91BF92B1EB35899" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8FB8AFCDABF8452F83DE8869F746A7BC" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_90951E8E6B5340689008B41EDD3A3F79" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_90FBC11A12284200A19D1869ED0A1E1D" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9103E051B4A148C2AE2B438C56464029" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_917CF3652B6247629F893344D40AB128" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_925C5C1FEF5A4F7F85BBA1BEA484F130" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_92684EA6B6C848E196808226672D7230" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9298A48B5D8B46C495B29CC9AA5D510F" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_71DB4173D0A1DE774C90437928F85735" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9369A854E29045B69C5DBCF963B99BF6" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_93A9D43033340E6AC9CD6CB947BDC85C" - "OwnerKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" + "MsmKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" + "OwnerKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_93A9D43033340E6AC9CD6CB947BDC85C" - "OwnerKey" = "8:_A6339429BB9B4B8993C3D9BB29ED86EE" + "MsmKey" = "8:_ADAC2A1C6F7847D680023FD8B62CE763" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_93A9D43033340E6AC9CD6CB947BDC85C" - "OwnerKey" = "8:_12335B8BAE0A4F779B4F30C11E447EB8" + "MsmKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_93A9D43033340E6AC9CD6CB947BDC85C" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_AE2D7B02724DDA7F2129EFCC431086A2" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_93A9D43033340E6AC9CD6CB947BDC85C" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_AE2D7B02724DDA7F2129EFCC431086A2" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_93A9D43033340E6AC9CD6CB947BDC85C" - "OwnerKey" = "8:_84D1E150F94A4734AF69639266E603A9" + "MsmKey" = "8:_AE2D7B02724DDA7F2129EFCC431086A2" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_93A9D43033340E6AC9CD6CB947BDC85C" - "OwnerKey" = "8:_C7B8B31323F147A19100C0D701B4101C" + "MsmKey" = "8:_AE2D7B02724DDA7F2129EFCC431086A2" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_93A9D43033340E6AC9CD6CB947BDC85C" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_AE2D7B02724DDA7F2129EFCC431086A2" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_93A9D43033340E6AC9CD6CB947BDC85C" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_AE2D7B02724DDA7F2129EFCC431086A2" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_93A9D43033340E6AC9CD6CB947BDC85C" - "OwnerKey" = "8:_7A001E5060F007B76553095966B3DD3A" + "MsmKey" = "8:_AE2D7B02724DDA7F2129EFCC431086A2" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_93A9D43033340E6AC9CD6CB947BDC85C" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_AE5299FDCC43405EAF4370467BC9852D" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_93A9D43033340E6AC9CD6CB947BDC85C" - "OwnerKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" + "MsmKey" = "8:_AEB09EE12FAD46EBA91839C0CBAF60A3" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_93A9D43033340E6AC9CD6CB947BDC85C" - "OwnerKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" + "MsmKey" = "8:_B02AC42471634FDDB8675ACE5C4A140D" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_93D38D3AABD741FEA3FAE5F12673BA4E" + "MsmKey" = "8:_B066540B0736433AB6589C065B960701" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_93DAD49FD21243B0903DE9ECFCADD0D6" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B08443E85D1E9F0B840A2A449E546223" + "OwnerKey" = "8:_E5F605D98C8CBEBB00C09D5EC8C8127B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_94628A5BD0AA4269AC5D4EFDDD7B19F6" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B08443E85D1E9F0B840A2A449E546223" + "OwnerKey" = "8:_74C989C8B18A40A885321F7F8188A83A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9545603599F3A85DE070D94A8CE1F201" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_B08443E85D1E9F0B840A2A449E546223" + "OwnerKey" = "8:_8A1BBE2E8DEC4DAFBCC14BDC7E027B48" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9545603599F3A85DE070D94A8CE1F201" - "OwnerKey" = "8:_67B28C0C25A549578A5E328EA971DE36" + "MsmKey" = "8:_B08443E85D1E9F0B840A2A449E546223" + "OwnerKey" = "8:_55EFD5C9477B4C7EA11F78E3928B0DC7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9545603599F3A85DE070D94A8CE1F201" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_B08443E85D1E9F0B840A2A449E546223" + "OwnerKey" = "8:_E8BE71CCC5174E3DA8ADD6585C0D9570" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9545603599F3A85DE070D94A8CE1F201" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_B08443E85D1E9F0B840A2A449E546223" + "OwnerKey" = "8:_527B1D31420E4B23B111E4FC4C7D4DB3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9545603599F3A85DE070D94A8CE1F201" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_B08443E85D1E9F0B840A2A449E546223" + "OwnerKey" = "8:_A3B2DD710F4843D781A8372B4443A708" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9545603599F3A85DE070D94A8CE1F201" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_B08443E85D1E9F0B840A2A449E546223" + "OwnerKey" = "8:_E6E84499A1CB4A6A265D8C05BD0FFA40" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9545603599F3A85DE070D94A8CE1F201" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_B08443E85D1E9F0B840A2A449E546223" + "OwnerKey" = "8:_1EF904821BA64F522142ACB4C8E61033" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9545603599F3A85DE070D94A8CE1F201" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_B08443E85D1E9F0B840A2A449E546223" + "OwnerKey" = "8:_7C840CCB2F2C1EA4816FE487B5E752DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_95E19BAF64801E12E1F4F108490124BD" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_B08443E85D1E9F0B840A2A449E546223" + "OwnerKey" = "8:_053845DF2A80A60A9B8FE3E1BF88DECD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_95E19BAF64801E12E1F4F108490124BD" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_B08443E85D1E9F0B840A2A449E546223" + "OwnerKey" = "8:_9A70E147EEAD7EA18E5190D6B05B2222" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_95E19BAF64801E12E1F4F108490124BD" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_B101C0AC4D184A2BB2E5114EC95A95B4" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_95F91B2628F84E108914858D305D584A" + "MsmKey" = "8:_B13A099F228149CDB35ED8B4D88ACEDE" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_95FA2F22712340978792F943907E95B4" + "MsmKey" = "8:_B3081C3D279041D18001864437F20CB4" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_96E7CFD075BE4B4996422F4F207A4277" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B31369344DC7215D3A7027A45F1F6021" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_96F7E032C1DE4C7EBB9AE5F67ADE31BD" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B31369344DC7215D3A7027A45F1F6021" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B31369344DC7215D3A7027A45F1F6021" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_96FB075AAC644471A449F39F62493516" + "MsmKey" = "8:_B41CF285191B458BB15E99523C5B2A40" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9725212FCDDD49F89B105FBA596A4619" + "MsmKey" = "8:_B449B757B942480F9FEF6E80B4576ECB" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9754C304CDCC43F4B00D92DAB5DCE248" + "MsmKey" = "8:_B4DA35F6411D41A4B08D2B39BB702932" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_97CF2B9129F0469F9E11CAE5A8F78A54" + "MsmKey" = "8:_B4DCC798FE6343DAAAA2DB644A31C4B4" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_97E0B4AF7AF74BBEB8AE3E3019C5E916" + "MsmKey" = "8:_B52E170F78B442BA83D08B9123907CFC" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9806EF3F54C1435E8D39D967381AE086" + "MsmKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_8BB9413DD232277D8EC384477B23E618" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_079009E7E5124031B6204AAC7FF67A9A" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_2CA572F0801641B0A319B8A36405E97C" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_2DC66B6B0ADA43EA9D508F2B6E62C1E8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_DB6DA2D86C6F4DC68545755D67200523" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_8B7D01F246DC495996E2A46DB76D4F84" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_ABF50DEAD3F44E68B097345106E563D8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_6AD6EEB4586A4ACF9B3E9F11A6F644DC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_51F4D594D73E477E856528EBC42B0F9D" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_716F98D87D6841DC8B6B346A171CE780" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_99C527251870413C95F2B9A8CF693728" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_FF838842077D44EAA2A6348E18D08E79" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_8CC35151D8EB44179879DD6E1A3FEEBE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_0B60CEFE230E4633B1FD838B2E9E4D46" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_BB2F0804317E40959BC54397F062E63F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_84D1E150F94A4734AF69639266E603A9" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_CD8824E528414EBDA5DCE3BA0A9528F8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_A8F6731403774C40A8E480A587DFE9C2" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_681A6EBA6A68461C95E7263C5490328E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_8446B116F7184398BD545B60AFF3FC46" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_9950BFEA0E494DFDBF222F8D162723FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_9C4BE12B0CD74B7CBBD18F04CB7C4D82" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_9B2EFE50DAD1458E8932CCF4310BEC9F" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_57C31C2439A34DC987398DE7F6C5B1E6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_9F396770E1B644CA889B7ED6A58E40DA" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_F05C2A6ABC3663BA3E2F3CF0A8A61AF0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_35037DF8DE6149C18293212108B27384" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_A2C4BBDA6C653F878CF9F09DDB19EB67" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_504E92556FF74DC6857BCBBB97FB7EB8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_89C50D3BE2F9490EBB5D778B96C32C9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_3AF27C2F3C6F5550735A7366B1261EFF" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_4EB2192CC00FB0EB1C5133471260033C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_0F1F0D6286EEEB4EC6814F48A7D049A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_002B35A47F685C337FD43749C4416446" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_3101F9AFF87F4586C5C12A29FB502D79" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_214C0A61A7B4A26FDBEB0788B62D0089" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_5BFFFF7FD7100CE916F389F8186B56E4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_AC9B28E0D99E4F1F515BA0BBE9459CE5" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_887286F4C29C1F45FAF43D3E3165DD9B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_2024DBA65B2E695BEA2FE6EBD3454FF6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_5193F4E9C8FD027F6DA8742BC80C4D34" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_C3EDD553A32A0F38069B9AC4058185CA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_71DB4173D0A1DE774C90437928F85735" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" - "OwnerKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_991EEF88AC3F465395698A49A450AE86" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "OwnerKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_99BC522B469D655DCEEF33E730328007" - "OwnerKey" = "8:_D27991107EA14C1C8B4A246C7658161E" + "MsmKey" = "8:_B78FE2D82BB12BEA1A00AF66AD6722CA" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_99BC522B469D655DCEEF33E730328007" - "OwnerKey" = "8:_0ADF9758C9EA4C82A9116965FD5C824A" + "MsmKey" = "8:_B78FE2D82BB12BEA1A00AF66AD6722CA" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_99C527251870413C95F2B9A8CF693728" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B78FE2D82BB12BEA1A00AF66AD6722CA" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9A2097DF8F4A4217A21041FB7728B506" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B78FE2D82BB12BEA1A00AF66AD6722CA" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9A32D9FCAA964D729A2A49D45B034A7D" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B78FE2D82BB12BEA1A00AF66AD6722CA" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9AA9B1640404D837BA8E590A2A7B3FDE" - "OwnerKey" = "8:_60307A9582FE2D7618125043293A02AB" + "MsmKey" = "8:_B78FE2D82BB12BEA1A00AF66AD6722CA" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9AA9B1640404D837BA8E590A2A7B3FDE" - "OwnerKey" = "8:_C739986D38D4428AA8E16DD93CA8F2C8" + "MsmKey" = "8:_B78FE2D82BB12BEA1A00AF66AD6722CA" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9AA9B1640404D837BA8E590A2A7B3FDE" - "OwnerKey" = "8:_6E350884A4BF44159F89904F4FDF6D50" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_050B0C597A5045379389601790CC6923" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9AA9B1640404D837BA8E590A2A7B3FDE" - "OwnerKey" = "8:_BC55DE2D96EE4BE7B63A10E87BA44D07" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9AA9B1640404D837BA8E590A2A7B3FDE" - "OwnerKey" = "8:_243FEEBC941A41DD9C5F736248AFD819" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_9AF4DF764E3D402FA7B373767289455C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9AA9B1640404D837BA8E590A2A7B3FDE" - "OwnerKey" = "8:_0AD2B80BD2AC492DB97EE4C5ED1BF5F8" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9AA9B1640404D837BA8E590A2A7B3FDE" - "OwnerKey" = "8:_53C949C71D0F422B8978AD416438B086" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_A382D02B948C4B54803DC488B33F0B3A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9AA9B1640404D837BA8E590A2A7B3FDE" - "OwnerKey" = "8:_80FAF08BE91DC1EC96DC613154D44F7E" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_C630F7E8EA4840BAB1B2559D71483F8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9AA9B1640404D837BA8E590A2A7B3FDE" - "OwnerKey" = "8:_D4EC43B9F9144598017136DE430174D9" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_A31F3F958D4547698677DD3F80B8FB27" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9AB31158976C4397B8ADF73333928D06" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_D8F5958646964348B09B2F5870ED1BE0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9B2EFE50DAD1458E8932CCF4310BEC9F" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_655FCCA1E86A4494A1245290A41E97B8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9B37A3A3FB8BCE35DCD0CC69E3F142F1" - "OwnerKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_55F9FC11F41F4C3EBF98220500974FBF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9BA073EDFD1A4ABDADCC69D75BFBAF99" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_BDE87E6E1B7A4905A9CEB9E5C03878BE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9C09304E7C7F19C2F28AD3B24A77B8CB" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_0368786955D94604AC394EEB6424743F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9C09304E7C7F19C2F28AD3B24A77B8CB" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_FE8069F25C7542899AA4D3DA4F912B1C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9C09304E7C7F19C2F28AD3B24A77B8CB" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_8B7D01F246DC495996E2A46DB76D4F84" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9C6D38A3903843EFB9D69810F6FE4C8C" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_4D4C37D93E3B414C8FE99DBB8E48FBB6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9C7BC3B28FEF0D6A3C7DF01D18722E6C" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_5B538E2AD9BE4EEE81436217036C9D66" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9C7BC3B28FEF0D6A3C7DF01D18722E6C" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_D724F156DB414BA6AB7ABFED86061864" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9C98C0AED0FB4AF1BAECADC0D870CF02" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_ABF50DEAD3F44E68B097345106E563D8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9CB339FE4F29483BBFC63B8DAA58487C" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_7A58EB8E4D024E9ABEEF4643AD40C308" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_716F98D87D6841DC8B6B346A171CE780" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9D74193656DE40FA843C2241CAC84A49" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9D8B9BE9F9CB11CC9BE6E68CE877BD3E" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9D8B9BE9F9CB11CC9BE6E68CE877BD3E" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9D8B9BE9F9CB11CC9BE6E68CE877BD3E" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_8146F9A2DB6A4D498ED4A46C80ECC662" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9DCC3259FB4363AF666EE00687ABAC68" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_7BEAA3F3CE3A41E1B5E7AA81B64066D9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9DCC3259FB4363AF666EE00687ABAC68" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_B02AC42471634FDDB8675ACE5C4A140D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9DCC3259FB4363AF666EE00687ABAC68" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_E24C55B98E6242C3B31344952E3ED6B6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E7E56BFEC0D4ECFBC08ABED74952809" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_32EF223E0EFB40A88EBE556C8EAA4AF3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" - "OwnerKey" = "8:_CA9EFFE3C824C0519F9E371FA2EEC3B6" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_B873BE40B7AA4D4FACE3565666F45F51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" - "OwnerKey" = "8:_59E9FDC913F34D1FA5C8E2F066ABD4C6" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_F5FE62D38D5C4D30A5276F398ACE2208" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" - "OwnerKey" = "8:_3205AE3C3826417C96B22E013AB23961" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" - "OwnerKey" = "8:_79CFE04F74314C5AAA631C8A6835BA7E" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_7776F0B3F25D4F958A79A3B702D72900" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" - "OwnerKey" = "8:_707F3FA8E34A4681B3ADF419E6724458" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_AD573111A7F14C01ABAD569CED96D350" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" - "OwnerKey" = "8:_FD80D55FA9E54BA1BB5D21F933BDB1C1" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_87840206D46747A097E4ED2B15D78CFA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" - "OwnerKey" = "8:_B11750BFE84B4302859140E5DB4A6EF7" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_78876DFFB8F54757A7E7CD5F6937D821" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" - "OwnerKey" = "8:_8426152F661C4C81AB2C8349F4F1D286" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_6E83BDD242CD403E88C6174D59C0F7D4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" - "OwnerKey" = "8:_311C9D1D07FB4B038396A7DB0015BAF1" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_EB98E04073DF4D0A81057B1F53EC6632" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" - "OwnerKey" = "8:_D70666FC24FC4568897AD2D90357364A" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" - "OwnerKey" = "8:_47A0E1EF51BB4C9DB3A056522E4E57A0" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_56340E8817D0425AA6F13E35C99A2EF1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" - "OwnerKey" = "8:_62E2EB85757ECD521EFB47ED25F86AEC" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_81776EE3B0D14F098DEF71346C834416" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" - "OwnerKey" = "8:_5B6F8058482CBAB6EDE2388612B42198" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_DB755541B20243BDB9467F3470981BC4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" - "OwnerKey" = "8:_BC8A1B78A0D1492B3C3EFB76715FC417" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_B13A099F228149CDB35ED8B4D88ACEDE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_A5C386CA7E4D475C8869A687EBEF8A04" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" - "OwnerKey" = "8:_8B357B058AA9E7346030D4EE55729A68" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_7FF631853BCE4C7080E8E8CB1DBCDCC1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9F396770E1B644CA889B7ED6A58E40DA" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_67415B187EDD4DB2AF1B659373386D94" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9F48ACE0842F4C3CAFB857607C5B5E5E" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_8988F38293E6443C82ED10D12481699D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9F9DBDF1BE674422A100529C9BAE0E4A" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_532344DBAAF142C2AFF7F262E5522497" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9FD85F6F04D04B19A40622A8B4148853" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_6410B7CD543C4AA1861A2AC1D40D5169" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A0675ECA63854ECA92C38EEF71748957" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_9950BFEA0E494DFDBF222F8D162723FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A0CAEAFA8AF476AE9779326B71CAD208" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_76060290214147F1808CF4DF19B364E0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A0CAEAFA8AF476AE9779326B71CAD208" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_CCB130078DDD4B288794D03E93E5D82B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A0CAEAFA8AF476AE9779326B71CAD208" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_975852014F5B4FACBBDF5C881DA76681" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A0CAEAFA8AF476AE9779326B71CAD208" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_BAF05666A62E4063B67A990DBB654458" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A0CAEAFA8AF476AE9779326B71CAD208" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_16758E102315420CAF07169A47EF16A8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A0CAEAFA8AF476AE9779326B71CAD208" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A0CAEAFA8AF476AE9779326B71CAD208" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A0CAEAFA8AF476AE9779326B71CAD208" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_9C4BE12B0CD74B7CBBD18F04CB7C4D82" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A1D9B0B4A7FD49CD972F88819300D737" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_57C31C2439A34DC987398DE7F6C5B1E6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A28626C07DA34FBCBD3FE29D07AA0E56" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_197BB23CB89E43A5B6ADC5825C6EA03C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A2C4BBDA6C653F878CF9F09DDB19EB67" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_C8225AB4F128DD5C462799E34B2089A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A2C4BBDA6C653F878CF9F09DDB19EB67" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A2C4BBDA6C653F878CF9F09DDB19EB67" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A2ECB5B1C76C7E107370542EE58E7B69" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_16EB40669FCA68C2E34800ABC4D81F41" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A2ECB5B1C76C7E107370542EE58E7B69" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A2ECB5B1C76C7E107370542EE58E7B69" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A39781889AA44D63B159B715850377F3" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_F05C2A6ABC3663BA3E2F3CF0A8A61AF0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_866E8D70379E4EC8B625FFE1F47FD889" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_AD652B25F4FB47219D9D111AD130AC03" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_DCED769F3CED40F68BBF793A3190390F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_F2BF868F37FD4EBB9EEE93828F6B8B80" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_8D916F703BFB47DEB61E0FF69D9F6189" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_D147A209D52B47799F51651D4069C15E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_1F07CC99CC9947599D83707F1D15766A" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_35037DF8DE6149C18293212108B27384" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_9C7BC3B28FEF0D6A3C7DF01D18722E6C" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_504E92556FF74DC6857BCBBB97FB7EB8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_F8B53535DABD4E7D5E5951C921AC682A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_4EB2192CC00FB0EB1C5133471260033C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_8765771DDE4A840EC489FFEEE5E7780A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_A9035D942941788E21A775971D3379AD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_0F1F0D6286EEEB4EC6814F48A7D049A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_AA98FEAE530E800F83819D70C36CAF58" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_385E4C4F5EED8818E2DF6396C14184B2" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_4BC9CD649C175DEADD4B1DEEC6E3E6A0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_46364AC2527B05575C1A7DC2C4A003FE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" - "OwnerKey" = "8:_BB9997D921573F9889C5EB78392A5460" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A5281AE19E3C0466830CC797A9C17602" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_06032F260A8DEC8FFD196041FDAD9A14" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A5281AE19E3C0466830CC797A9C17602" - "OwnerKey" = "8:_BC55DE2D96EE4BE7B63A10E87BA44D07" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_A76A17A95231B9F651C86B8747D361A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A5281AE19E3C0466830CC797A9C17602" - "OwnerKey" = "8:_53C949C71D0F422B8978AD416438B086" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_168090D595D80D0A86442948560A106E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A5281AE19E3C0466830CC797A9C17602" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_5BFFFF7FD7100CE916F389F8186B56E4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A5281AE19E3C0466830CC797A9C17602" - "OwnerKey" = "8:_60307A9582FE2D7618125043293A02AB" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A54517EE25194FC590EB2029F97FC7C3" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_9CA2658ACD8741F43E77E56D9F53DCD5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A6339429BB9B4B8993C3D9BB29ED86EE" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_F9D45EB45753FAD80DFD1C6F7ADF3844" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A710F9451C434CE8BA9E9C48BD42D070" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_32F0360562E0F4E46ECF81F6FFE26EC6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A713D419BA6D49E5878EB49FED28B813" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A73B77AB52A14A06924029907A4E19B1" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_0D1200924CA21F19FF53C62B7B8354FF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A7627351C23344B288E5619E09FF3A3E" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A872892F28FE4A399CA1605C6C7FD557" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" - "OwnerKey" = "8:_DFF757D14EB882CB71FA8D0C55AB8BF8" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" - "OwnerKey" = "8:_F990AF8668E94BD9BE4862F58E0BD0B7" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" - "OwnerKey" = "8:_C8D235EB2C8C44488CC95E6B770AC24F" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" - "OwnerKey" = "8:_5B9E3DEC263DB384D2E4044422BBD36F" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A8F6731403774C40A8E480A587DFE9C2" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_C2C7C844CF816EEE05C94D4477A24455" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A9308BDDA6FB471CB3CAE858EC21578B" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_DE4CD1E105AF4B87366D07C46F4C2663" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AA364DFC6D0E65A0D2C0BE1273C187A6" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_8A2729C4F323C0E2EFEB67AC17F2900C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AA364DFC6D0E65A0D2C0BE1273C187A6" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AA364DFC6D0E65A0D2C0BE1273C187A6" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_792C41CB6C66CA56AB56A89516AF727F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AA74C26107BC58CE2108D0D6677BECE1" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AA74C26107BC58CE2108D0D6677BECE1" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AA74C26107BC58CE2108D0D6677BECE1" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AB6160198BD944ED9FDA8F39CC308976" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_AE2D7B02724DDA7F2129EFCC431086A2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AB71A1548839486383CCBE843D38D197" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_ABCEABC5D08D44868FB094D55A3D2E40" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_71DB4173D0A1DE774C90437928F85735" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AC9B28E0D99E4F1F515BA0BBE9459CE5" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_5C8A40195D2FA713BE376F012B30D161" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AC9B28E0D99E4F1F515BA0BBE9459CE5" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AC9B28E0D99E4F1F515BA0BBE9459CE5" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_0C35F03470F41E63CFC2314557D58C9F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AC9B28E0D99E4F1F515BA0BBE9459CE5" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_1227F5127E12287474AC428519CF1F5A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AC9B28E0D99E4F1F515BA0BBE9459CE5" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AC9B28E0D99E4F1F515BA0BBE9459CE5" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AC9B28E0D99E4F1F515BA0BBE9459CE5" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AC9B28E0D99E4F1F515BA0BBE9459CE5" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_0D7CAA399994014550D649BDB391BF30" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AC9B28E0D99E4F1F515BA0BBE9459CE5" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_ACC9D7826CBE472A8766CAF892A6B8A9" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AD0702E6A985495B973E198A50FD62EB" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AD807159398E42A4AFF9F5DB174493FF" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_B6288F8D68A9416A92DC90E280B06EA2" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_C0D404D4D8454A858FA85D82CD92DF78" + "MsmKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" + "OwnerKey" = "8:_195464F81556BDF6BDAF089A424D04BD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_B808326208D646B48EBF76E50BAE7695" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_B873BE40B7AA4D4FACE3565666F45F51" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_B9ED092670E34E93B444DD3F43E9047E" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_51F4D594D73E477E856528EBC42B0F9D" + "MsmKey" = "8:_BA20A3AB57C1422B8E71E1DA21B52473" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_7A5B16731EEC4355B576D7DDFCA358BF" + "MsmKey" = "8:_BA2B96C7FA5549D0B77262A6B2D056A3" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_5B852E420FAF4CC99F72BCEC55D0342E" + "MsmKey" = "8:_BA30063303C16AF1779B5530580C5ED4" + "OwnerKey" = "8:_1227F5127E12287474AC428519CF1F5A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_FC262487CAE543089CB587C8166C581E" + "MsmKey" = "8:_BA30063303C16AF1779B5530580C5ED4" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" + "MsmKey" = "8:_BA30063303C16AF1779B5530580C5ED4" + "OwnerKey" = "8:_B873BE40B7AA4D4FACE3565666F45F51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "MsmKey" = "8:_BA30063303C16AF1779B5530580C5ED4" + "OwnerKey" = "8:_6E83BDD242CD403E88C6174D59C0F7D4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_BA30063303C16AF1779B5530580C5ED4" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_BA30063303C16AF1779B5530580C5ED4" + "OwnerKey" = "8:_81776EE3B0D14F098DEF71346C834416" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_EB8BA7C21ABA40638C3816DE39B8B8AA" + "MsmKey" = "8:_BA30063303C16AF1779B5530580C5ED4" + "OwnerKey" = "8:_95E95D512F7447DAA4C6FD50CE087AEA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_8D916F703BFB47DEB61E0FF69D9F6189" + "MsmKey" = "8:_BA30063303C16AF1779B5530580C5ED4" + "OwnerKey" = "8:_A5C386CA7E4D475C8869A687EBEF8A04" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "MsmKey" = "8:_BA30063303C16AF1779B5530580C5ED4" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_1F07CC99CC9947599D83707F1D15766A" + "MsmKey" = "8:_BA30063303C16AF1779B5530580C5ED4" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_BA30063303C16AF1779B5530580C5ED4" + "OwnerKey" = "8:_F8B53535DABD4E7D5E5951C921AC682A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_BA30063303C16AF1779B5530580C5ED4" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_14D46FEB93FA4D299E6056B1E348312F" + "MsmKey" = "8:_BA30063303C16AF1779B5530580C5ED4" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_BA30063303C16AF1779B5530580C5ED4" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_BA30063303C16AF1779B5530580C5ED4" + "OwnerKey" = "8:_784ACDE198073C9AECF536BBDD06E2CA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BA30063303C16AF1779B5530580C5ED4" + "OwnerKey" = "8:_DE4CD1E105AF4B87366D07C46F4C2663" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_BA30063303C16AF1779B5530580C5ED4" + "OwnerKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_BAF05666A62E4063B67A990DBB654458" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_385E4C4F5EED8818E2DF6396C14184B2" + "MsmKey" = "8:_BB2F0804317E40959BC54397F062E63F" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_0D7CAA399994014550D649BDB391BF30" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_D8F5958646964348B09B2F5870ED1BE0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_1CB01662D311443BA86B4C7D1C5F91BC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_5B33C61F5CC73F6B67F7641FDCA19E32" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_2DC66B6B0ADA43EA9D508F2B6E62C1E8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_D712A5E055A3EC30011B6E0718A0BBF1" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_13C0B21BEF168B0190E20DD315BFA3E0" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_8146F9A2DB6A4D498ED4A46C80ECC662" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_B873BE40B7AA4D4FACE3565666F45F51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_C764A96E38DC71EE64244082FCEF9637" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_F5FE62D38D5C4D30A5276F398ACE2208" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_002B35A47F685C337FD43749C4416446" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_7776F0B3F25D4F958A79A3B702D72900" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_BB9997D921573F9889C5EB78392A5460" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_AD573111A7F14C01ABAD569CED96D350" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_78876DFFB8F54757A7E7CD5F6937D821" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_6E83BDD242CD403E88C6174D59C0F7D4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_EB98E04073DF4D0A81057B1F53EC6632" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE8F8E5D1623CFC21485A926C163EE58" - "OwnerKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AE9BF056D28749AC920B22FB0FB3F2ED" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_BB2F0804317E40959BC54397F062E63F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AECE1BCC2F32BA06761A48F1FC930DB9" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_16758E102315420CAF07169A47EF16A8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AECE1BCC2F32BA06761A48F1FC930DB9" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AECE1BCC2F32BA06761A48F1FC930DB9" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AECE1BCC2F32BA06761A48F1FC930DB9" - "OwnerKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AED7E1511C6E47C4A7750F30954E4A84" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AF0BC99033294CF8AC8EBA1DA757D14B" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AF2FD3529ACE48B6A5497A6197A020AA" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AF99149F6847CCF5CD6229824629EA85" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_3101F9AFF87F4586C5C12A29FB502D79" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AF99149F6847CCF5CD6229824629EA85" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AF99149F6847CCF5CD6229824629EA85" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_8A42A9274EFB189CCEE03074E79EB5DC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_A3339262B2B799F31F86F22E1EDCB371" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_5193F4E9C8FD027F6DA8742BC80C4D34" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B0922AF6E2644FA8A62EBEB3B92ABD04" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B11750BFE84B4302859140E5DB4A6EF7" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_792C41CB6C66CA56AB56A89516AF727F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B16E542C910B2E0537C34147E3F2A772" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B16E542C910B2E0537C34147E3F2A772" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B16E542C910B2E0537C34147E3F2A772" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B16E542C910B2E0537C34147E3F2A772" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B16E542C910B2E0537C34147E3F2A772" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_1227F5127E12287474AC428519CF1F5A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B1849DE105A443F195D7510B391D0629" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" + "OwnerKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_BB538FA2BB35D79B1A509C75F509CEED" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BB538FA2BB35D79B1A509C75F509CEED" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BB538FA2BB35D79B1A509C75F509CEED" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B1BBFEBF17944DFE9CA4380F36886A1E" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_A32E83D14D6B70C3D81A82C2C8943DBF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B2011D514CF04C259ABAA54E70395610" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_31365292EB0A4C64A977C3FF80BE8D9C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B28C76E809A91245E9FA657909D423F4" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_20D842E976454292AAD59C3710685729" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B28C76E809A91245E9FA657909D423F4" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_FB5846E10AC44AF497982FCAE901BDE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B28C76E809A91245E9FA657909D423F4" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_D91B6235A19E4D5D86FDB5318B05BBD7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B28C76E809A91245E9FA657909D423F4" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_E7FCDF731C3B4D35AEA32CF96F94DCB9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B28C76E809A91245E9FA657909D423F4" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_8B79E641FCED4F83AFC0AB850BD604D7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B28C76E809A91245E9FA657909D423F4" - "OwnerKey" = "8:_AD0702E6A985495B973E198A50FD62EB" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_DDB9E5D5DD0E4B24962ABC7F8132B4A2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B28C76E809A91245E9FA657909D423F4" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_BC99B36986BA4DF485067E818CF29BFB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B28C76E809A91245E9FA657909D423F4" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_4BA0772E1F5B47EE9DA191683D222745" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B28C76E809A91245E9FA657909D423F4" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_A03E7BC3D09F4E36BCFAFE25E18348EC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B28C76E809A91245E9FA657909D423F4" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_D0BD19994C2940679E82F355F7717861" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B28C76E809A91245E9FA657909D423F4" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_B449B757B942480F9FEF6E80B4576ECB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B28C76E809A91245E9FA657909D423F4" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_6186376DC93E4147A10CEE688187DC66" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_DA9A5A57867E4C3CA3A26AD724AD35EA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B37C77462FCA46E0AB014FA0F04FE244" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_7EA003AA5FED4C9D9C5BD3195F71DD3D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B382B3D55198467A833D4D68A97F3B71" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_4E2528B097824D5F9915F870179C3668" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B45E6D2A938A484B991B5957B2039B7B" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_BC75628638E74C7DAC366734ABAB19C1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B493379D394F49F2A257ACE3C4BEF216" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_39684D34359849A282ADE8ADFBEE0B4A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B4A2F77BB0CF4ECEB26E7E3D2294CF4F" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_253BC8A12B714CCCBBAD8BEA9AB232AF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B4DC9680AAC199071BAEC00BA7B52A9D" - "OwnerKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_A599A7EE92D343398580075929DFA7A1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B4DC9680AAC199071BAEC00BA7B52A9D" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_7F44F5DCF7044398A8BC0D24E76B35B4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B4DC9680AAC199071BAEC00BA7B52A9D" - "OwnerKey" = "8:_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_69AB1DD380134079B4877AC8EA430A2D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B4DC9680AAC199071BAEC00BA7B52A9D" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_1C737FA2F1C14AECAA30697D490522CC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B4DC9680AAC199071BAEC00BA7B52A9D" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B4DC9680AAC199071BAEC00BA7B52A9D" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_610B8A9E00FC4B4B966C85057C9F3245" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B4DC9680AAC199071BAEC00BA7B52A9D" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_2BA3714CA8E54F78954E9579293C3CAB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B4DC9680AAC199071BAEC00BA7B52A9D" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_344F4EFB09664C2786E9B62FDFEFD8A9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B4F82C482A754198A8A7FEAE40546071" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_D6246B49359C12A914E1F377C60A5384" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B5127E434BF4494E8356C0D8F2633803" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_E10F32141108468157C13370CD7F7C81" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B5615E73CC7BA3BF0317A4656D181CB5" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_BFB995BCB8239D0D35E57B0EEF41FC6B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B5615E73CC7BA3BF0317A4656D181CB5" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_B78FE2D82BB12BEA1A00AF66AD6722CA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B5615E73CC7BA3BF0317A4656D181CB5" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B5FBCF72AEE896E9FD20C3934E7113D5" - "OwnerKey" = "8:_2DD98C1858E945F19BA2B91B316B07A1" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B5FBCF72AEE896E9FD20C3934E7113D5" - "OwnerKey" = "8:_11EF1D71AA6D46D794828A3A741F7AEE" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_4B8414E123E23CEF0A1536322F0ECAE2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B5FBCF72AEE896E9FD20C3934E7113D5" - "OwnerKey" = "8:_8DA7C6C81DDC4F94A07D257BE53DF8B3" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B5FBCF72AEE896E9FD20C3934E7113D5" - "OwnerKey" = "8:_B5127E434BF4494E8356C0D8F2633803" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_BA30063303C16AF1779B5530580C5ED4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B5FBCF72AEE896E9FD20C3934E7113D5" - "OwnerKey" = "8:_757E886985FB4EF9814BE6364A1133D6" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_BB315D8F59155F74EC00AC8160D8203F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B5FBCF72AEE896E9FD20C3934E7113D5" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_D1C2C90966B214685D6072ECB20B5548" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B5FBCF72AEE896E9FD20C3934E7113D5" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_1EBFA83B0E0372E14B635FEC41900DCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B5FBCF72AEE896E9FD20C3934E7113D5" - "OwnerKey" = "8:_DAA20B5745500E7FDCA65B7ABE6A042B" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_80E8F008375A8F16DA4D31C71B44B93B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B5FBCF72AEE896E9FD20C3934E7113D5" - "OwnerKey" = "8:_82D3BD935404854CA720F54A2B42897F" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_2E19CF28D9950189E4EFF269041F0FD8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B6288F8D68A9416A92DC90E280B06EA2" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_E9DAA898D8564160E7A21A6605813D2D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B64C145C07224471B09A38CB84311F65" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_046C7409807BEA0AD759D7284933C95C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B6C4D08D31CCEB4B3B525FF7287C1791" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_483D147777EFA8C37B8D462BA94687D7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B6C4D08D31CCEB4B3B525FF7287C1791" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_ABE0597EE67D334D94800C5C16715381" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B6C4D08D31CCEB4B3B525FF7287C1791" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_39187295040B712CB7D5035C7086FE49" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B6CCA4A9653249069470DF365EC73E13" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_686CB9C8A3ABAF81B50FDCD359D1856E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B72BF1304D7C4BF4A68B845EAF0C9872" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B8AEAF1670241ADBAE04834B32D7CE4C" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_41166B47E9DED0CCB5B576735A417525" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B8AEAF1670241ADBAE04834B32D7CE4C" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_7F210359DC9E62075F674C1B0050A471" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B9AEDD2931244B6494949D55104210BC" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_DA09F5E866E3BB9E0C746846C6A946E4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BA6689085C8CEBFE45F4F582C7CA6BE7" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BA6689085C8CEBFE45F4F582C7CA6BE7" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" + "OwnerKey" = "8:_B7EE7F69CAC839955D7B7E04EFE9C585" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BA6689085C8CEBFE45F4F582C7CA6BE7" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BC2AA73D1EB342DAA2E6E829A46B56DF" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BA6689085C8CEBFE45F4F582C7CA6BE7" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_BC46BAEB1ACB4B6C9B2E676BC5136CB1" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BA6689085C8CEBFE45F4F582C7CA6BE7" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BC75628638E74C7DAC366734ABAB19C1" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BB9997D921573F9889C5EB78392A5460" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_195464F81556BDF6BDAF089A424D04BD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BB9997D921573F9889C5EB78392A5460" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BB9997D921573F9889C5EB78392A5460" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BB9997D921573F9889C5EB78392A5460" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_A959687D5A594B038895659012B722D7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BB9997D921573F9889C5EB78392A5460" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_C630F7E8EA4840BAB1B2559D71483F8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BB9997D921573F9889C5EB78392A5460" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_1CB01662D311443BA86B4C7D1C5F91BC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BB9997D921573F9889C5EB78392A5460" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_2DC66B6B0ADA43EA9D508F2B6E62C1E8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_6EEF588F24794BD699D2C5F6A0670472" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_655FCCA1E86A4494A1245290A41E97B8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_9CB339FE4F29483BBFC63B8DAA58487C" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_55F9FC11F41F4C3EBF98220500974FBF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_C5B0AE74BFAE45BA893232F4A15B6C27" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_0368786955D94604AC394EEB6424743F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_7DA9550944E242C8B9D670E9FE8EE460" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_48FEC7295A1F49AFA9658B28040D82D0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_1359C7CA18A745EA8445F44058628957" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_B6288F8D68A9416A92DC90E280B06EA2" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_FE8069F25C7542899AA4D3DA4F912B1C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_079009E7E5124031B6204AAC7FF67A9A" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_8B7D01F246DC495996E2A46DB76D4F84" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_DB6DA2D86C6F4DC68545755D67200523" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_4D4C37D93E3B414C8FE99DBB8E48FBB6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_B1849DE105A443F195D7510B391D0629" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_527DEAD8AE7E4E8E99348D277DDC3AD3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_F62AEFC871D44831804BCD4DF25C23F0" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_5B538E2AD9BE4EEE81436217036C9D66" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_14727598BC6740079DA62CAB552BE8A5" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_6AE632079F394BD3BD1D95910CCD9D25" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_0E68B1E82AAD49399267ACAB562EC6F5" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_ABF50DEAD3F44E68B097345106E563D8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_E9B8002F9879403F994F719F640BFF20" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_7A58EB8E4D024E9ABEEF4643AD40C308" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_6AD6EEB4586A4ACF9B3E9F11A6F644DC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_716F98D87D6841DC8B6B346A171CE780" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_3B72D4DBB2DB48BFAD0801684500E08D" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_E8309CE031A84E3BB0C7AEA48E019E22" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_8A48519D23634D2F9EC22ECF0A14A3CC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_7BEAA3F3CE3A41E1B5E7AA81B64066D9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_638ED98CAD46C3F510314D5BA18F5FFA" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_E24C55B98E6242C3B31344952E3ED6B6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_B873BE40B7AA4D4FACE3565666F45F51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_2E3DA24B734E4A11A8D0E0753635C7AE" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_F5FE62D38D5C4D30A5276F398ACE2208" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_1F07CC99CC9947599D83707F1D15766A" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_9F396770E1B644CA889B7ED6A58E40DA" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_7776F0B3F25D4F958A79A3B702D72900" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_AD573111A7F14C01ABAD569CED96D350" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_78876DFFB8F54757A7E7CD5F6937D821" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_6E83BDD242CD403E88C6174D59C0F7D4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_EB98E04073DF4D0A81057B1F53EC6632" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_8CC35151D8EB44179879DD6E1A3FEEBE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_7B84FC380764415ABB407E76018A6C1F" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_BB2F0804317E40959BC54397F062E63F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_9D1CC96279B2459A84840D5EF2364F94" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_CD8824E528414EBDA5DCE3BA0A9528F8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_56340E8817D0425AA6F13E35C99A2EF1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_E0A90872657427483F053288CC41F7BF" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_DB755541B20243BDB9467F3470981BC4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_B13A099F228149CDB35ED8B4D88ACEDE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_7FF631853BCE4C7080E8E8CB1DBCDCC1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_385E4C4F5EED8818E2DF6396C14184B2" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_8988F38293E6443C82ED10D12481699D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_6410B7CD543C4AA1861A2AC1D40D5169" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_A2C4BBDA6C653F878CF9F09DDB19EB67" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_9950BFEA0E494DFDBF222F8D162723FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_76060290214147F1808CF4DF19B364E0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_CCB130078DDD4B288794D03E93E5D82B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_002B35A47F685C337FD43749C4416446" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_EC057A65CB2191A3A75D32D39E2C9281" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_AC9B28E0D99E4F1F515BA0BBE9459CE5" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_779089C4535D1F4BE27BCFA5629CC6B4" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_BAF05666A62E4063B67A990DBB654458" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_0327CD370EE34AA4A8DD54EBBF99AC9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_DA87F4E078FD438E9CBA27D5FD4B0543" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_8BB9413DD232277D8EC384477B23E618" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_16758E102315420CAF07169A47EF16A8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_934419EC0632F1868B14A1C07AB5EEF6" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_5F082BC1113FF660F20E98CE2AC3095D" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" - "OwnerKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_9C4BE12B0CD74B7CBBD18F04CB7C4D82" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBD6FAD81E26ECE30F40C28556D906CE" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_57C31C2439A34DC987398DE7F6C5B1E6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBD6FAD81E26ECE30F40C28556D906CE" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_197BB23CB89E43A5B6ADC5825C6EA03C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBD6FAD81E26ECE30F40C28556D906CE" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_C8225AB4F128DD5C462799E34B2089A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBD6FAD81E26ECE30F40C28556D906CE" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BBD6FAD81E26ECE30F40C28556D906CE" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BC55DE2D96EE4BE7B63A10E87BA44D07" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_73D3FD7993624E07B5E561B11755AC2B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BC8A1B78A0D1492B3C3EFB76715FC417" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_CE6D89188B1C43438BB2A2F8F3334887" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BC8A1B78A0D1492B3C3EFB76715FC417" - "OwnerKey" = "8:_79CFE04F74314C5AAA631C8A6835BA7E" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BC8A1B78A0D1492B3C3EFB76715FC417" - "OwnerKey" = "8:_311C9D1D07FB4B038396A7DB0015BAF1" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_9818F96B07084AA4B619A0A41EE9C6B5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BC8A1B78A0D1492B3C3EFB76715FC417" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_999A55ECDBA24B00AEE2A5A207F8030D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BC8A1B78A0D1492B3C3EFB76715FC417" - "OwnerKey" = "8:_5B6F8058482CBAB6EDE2388612B42198" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_DD98189F70C149948FEBEDB7FFD024BB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_515A8CFB844E4B618CB13EC19A0FE75C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_8DA7C6C81DDC4F94A07D257BE53DF8B3" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_F05C2A6ABC3663BA3E2F3CF0A8A61AF0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_D08DD0666CC842F1AD8325C1C827285E" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_B6288F8D68A9416A92DC90E280B06EA2" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_EABF3921F3284D87909D094D538FA526" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_866E8D70379E4EC8B625FFE1F47FD889" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_DCED769F3CED40F68BBF793A3190390F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_FC1B3053EE004D9CA842FE7ACAB59109" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_E0DD91B6820043019824432F3CCAC570" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_F2BF868F37FD4EBB9EEE93828F6B8B80" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_8D916F703BFB47DEB61E0FF69D9F6189" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_D147A209D52B47799F51651D4069C15E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_FEEDC4F58B6148F79B34BCD14DEF1B1B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_35037DF8DE6149C18293212108B27384" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_9C7BC3B28FEF0D6A3C7DF01D18722E6C" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_504E92556FF74DC6857BCBBB97FB7EB8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_89C50D3BE2F9490EBB5D778B96C32C9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_857F5B9F107D4EE0A084B7EFFF52D005" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_4EB2192CC00FB0EB1C5133471260033C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_25E58EB806A4EC8427C4EB8A218A5087" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_3F7191903485AE336DDBE8F265888B67" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_D61738826E13F256E5D5365099EA0D68" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_8765771DDE4A840EC489FFEEE5E7780A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_B5615E73CC7BA3BF0317A4656D181CB5" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_A9035D942941788E21A775971D3379AD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_0F1F0D6286EEEB4EC6814F48A7D049A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_A0CAEAFA8AF476AE9779326B71CAD208" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_AA98FEAE530E800F83819D70C36CAF58" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_3101F9AFF87F4586C5C12A29FB502D79" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_4BC9CD649C175DEADD4B1DEEC6E3E6A0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "OwnerKey" = "8:_BB9997D921573F9889C5EB78392A5460" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BD0C134F8B3D461082A684578110A12C" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_06032F260A8DEC8FFD196041FDAD9A14" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BD1C0B35E4F64A7F8E99C9D03DF3C970" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_A76A17A95231B9F651C86B8747D361A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BD2010ACC5854E1096F7AC798834A8D7" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_168090D595D80D0A86442948560A106E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BD3B5B85C4E445248560F41BD0DE8BE7" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_5BFFFF7FD7100CE916F389F8186B56E4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_63671CEDA4AA460FA5689EBD8101E817" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_8A42A9274EFB189CCEE03074E79EB5DC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_B1849DE105A443F195D7510B391D0629" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_866E8D70379E4EC8B625FFE1F47FD889" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_887286F4C29C1F45FAF43D3E3165DD9B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_9CA2658ACD8741F43E77E56D9F53DCD5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_BD0C134F8B3D461082A684578110A12C" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_84381ED1D01A444DA4B139C706F80BC9" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_3F4EC1A21F29FC2FEB667F72396C798B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_2F1F84E9CA7D46DF9F9739205F12F95B" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_638ED98CAD46C3F510314D5BA18F5FFA" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_2024DBA65B2E695BEA2FE6EBD3454FF6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_9C7BC3B28FEF0D6A3C7DF01D18722E6C" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_5193F4E9C8FD027F6DA8742BC80C4D34" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_C2C7C844CF816EEE05C94D4477A24455" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_BD3B5B85C4E445248560F41BD0DE8BE7" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_18F64B11FA2B3AF2FD7BC1EBF31D85A4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_5C7248F3FB9C4BC08BC60F647CF92413" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_2116ADB1ABE805FABB3C862848A4F461" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_D142F4C5A6246588440689DF4036E8F2" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_5CC8DF7128C49B8D92F54987837BE0D6" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" - "OwnerKey" = "8:_08F2AD45918FE7A8AD9BEDB57716F237" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_71DB4173D0A1DE774C90437928F85735" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE071671F7014436B3DD37FCD7ED12CA" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_DD9267F304CD86680605583251BC35EC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_0C35F03470F41E63CFC2314557D58C9F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE1AF78253A7446CBAB1C6914460994B" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_5C8A40195D2FA713BE376F012B30D161" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_1227F5127E12287474AC428519CF1F5A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BE5D2C19D8FE4FA1BDF8F4B535872332" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_01838AD5211DB87EAF6539800EB4D08C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BEB7712F13CD4B2CBEA04C676E1B1CF4" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BF29C4B1EC234DD3AC7CFAFE4313EFFE" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_0D7CAA399994014550D649BDB391BF30" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BFCE0B7A76304ACAA2D84D64CE0EC7AB" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BFF5FBE47C6B1DE189FA9A70CF61B8C6" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BFF5FBE47C6B1DE189FA9A70CF61B8C6" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_BFF5FBE47C6B1DE189FA9A70CF61B8C6" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C04A80B6E9D54E718CAF41CA552A46E3" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C0963962D778472C925FDA3E346DFD0F" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_AC3B8ADF83C9D34956B22A4037FE772E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C0D404D4D8454A858FA85D82CD92DF78" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C11E19B0EB4B8A1E84235A23B46ABD98" - "OwnerKey" = "8:_A5281AE19E3C0466830CC797A9C17602" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C11E19B0EB4B8A1E84235A23B46ABD98" - "OwnerKey" = "8:_C739986D38D4428AA8E16DD93CA8F2C8" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C11E19B0EB4B8A1E84235A23B46ABD98" - "OwnerKey" = "8:_BC55DE2D96EE4BE7B63A10E87BA44D07" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C11E19B0EB4B8A1E84235A23B46ABD98" - "OwnerKey" = "8:_C0963962D778472C925FDA3E346DFD0F" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C11E19B0EB4B8A1E84235A23B46ABD98" - "OwnerKey" = "8:_243FEEBC941A41DD9C5F736248AFD819" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_AD6DC0D31D46E64A927125525FF9B3E9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C11E19B0EB4B8A1E84235A23B46ABD98" - "OwnerKey" = "8:_53C949C71D0F422B8978AD416438B086" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C11E19B0EB4B8A1E84235A23B46ABD98" - "OwnerKey" = "8:_B493379D394F49F2A257ACE3C4BEF216" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_209CC981198B092EEADFA404D4E99DE1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C11E19B0EB4B8A1E84235A23B46ABD98" - "OwnerKey" = "8:_60307A9582FE2D7618125043293A02AB" + "MsmKey" = "8:_BC7A7626E0453C1C759DB01818C4B1B4" + "OwnerKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C11E19B0EB4B8A1E84235A23B46ABD98" - "OwnerKey" = "8:_80FAF08BE91DC1EC96DC613154D44F7E" + "MsmKey" = "8:_BC99B36986BA4DF485067E818CF29BFB" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1776D18D5864A85859C2795FF95DBC4" + "MsmKey" = "8:_BDC26B191C4E46B2B8F880A9313172FF" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C17E953CE554458FA3D973414751D2CC" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BDC9386BC0BF26599814EBEEF06578A8" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" + "MsmKey" = "8:_BDC9386BC0BF26599814EBEEF06578A8" + "OwnerKey" = "8:_FE8069F25C7542899AA4D3DA4F912B1C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_0ADF9758C9EA4C82A9116965FD5C824A" + "MsmKey" = "8:_BDC9386BC0BF26599814EBEEF06578A8" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BDC9386BC0BF26599814EBEEF06578A8" + "OwnerKey" = "8:_C8225AB4F128DD5C462799E34B2089A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_FF838842077D44EAA2A6348E18D08E79" + "MsmKey" = "8:_BDC9386BC0BF26599814EBEEF06578A8" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" + "MsmKey" = "8:_BDC9386BC0BF26599814EBEEF06578A8" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_0B60CEFE230E4633B1FD838B2E9E4D46" + "MsmKey" = "8:_BDC9386BC0BF26599814EBEEF06578A8" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_A8F6731403774C40A8E480A587DFE9C2" + "MsmKey" = "8:_BDC9386BC0BF26599814EBEEF06578A8" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "MsmKey" = "8:_BDE87E6E1B7A4905A9CEB9E5C03878BE" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_BEDF1CBE662C4A6DA590ACBC7F4A9A41" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" + "OwnerKey" = "8:_2E19CF28D9950189E4EFF269041F0FD8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" + "OwnerKey" = "8:_7A58EB8E4D024E9ABEEF4643AD40C308" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" + "OwnerKey" = "8:_4E2528B097824D5F9915F870179C3668" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_D27991107EA14C1C8B4A246C7658161E" + "MsmKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" + "OwnerKey" = "8:_9950BFEA0E494DFDBF222F8D162723FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" + "OwnerKey" = "8:_69AB1DD380134079B4877AC8EA430A2D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" + "OwnerKey" = "8:_F05C2A6ABC3663BA3E2F3CF0A8A61AF0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" + "MsmKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_002B35A47F685C337FD43749C4416446" + "MsmKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" + "MsmKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" + "OwnerKey" = "8:_BFB995BCB8239D0D35E57B0EEF41FC6B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" - "OwnerKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" + "MsmKey" = "8:_BF1021F20A87A47CAA9E94F4C68346E2" + "OwnerKey" = "8:_5581E2113E30ABF56B928CC74B23EE36" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C2095D44FD874AF0AB1674F7B81FC236" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" + "OwnerKey" = "8:_0C35F03470F41E63CFC2314557D58C9F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C2C3BB0798EFC1FC067F01DF875DE2F4" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" + "OwnerKey" = "8:_FE8069F25C7542899AA4D3DA4F912B1C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C2C3BB0798EFC1FC067F01DF875DE2F4" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" + "OwnerKey" = "8:_8B7D01F246DC495996E2A46DB76D4F84" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C2C3BB0798EFC1FC067F01DF875DE2F4" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" + "OwnerKey" = "8:_4D4C37D93E3B414C8FE99DBB8E48FBB6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C2DA7AAF1C68439CA95DEDC6F6CC83A4" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" + "OwnerKey" = "8:_76060290214147F1808CF4DF19B364E0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C3B07EBEFAE54F1BB2AF8F980E78A084" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C3CCCAC0E34A471DAFFC4BB34109A8D8" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" + "OwnerKey" = "8:_C8225AB4F128DD5C462799E34B2089A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C41F241047324439B40A7267816049B8" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" + "MsmKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_C739986D38D4428AA8E16DD93CA8F2C8" + "MsmKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" + "OwnerKey" = "8:_4EB2192CC00FB0EB1C5133471260033C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_6E350884A4BF44159F89904F4FDF6D50" + "MsmKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_19FE79ED86B14135BF9ABBC86A76C182" + "MsmKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_BC55DE2D96EE4BE7B63A10E87BA44D07" + "MsmKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" + "OwnerKey" = "8:_5C8A40195D2FA713BE376F012B30D161" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_079009E7E5124031B6204AAC7FF67A9A" + "MsmKey" = "8:_BFB995BCB8239D0D35E57B0EEF41FC6B" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_2CA572F0801641B0A319B8A36405E97C" + "MsmKey" = "8:_BFB995BCB8239D0D35E57B0EEF41FC6B" + "OwnerKey" = "8:_58C396CAD94644E493315C2801EC4AF5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_DB6DA2D86C6F4DC68545755D67200523" + "MsmKey" = "8:_BFB995BCB8239D0D35E57B0EEF41FC6B" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_70F8B2B0578A45A09CEC90DCB99959D2" + "MsmKey" = "8:_BFB995BCB8239D0D35E57B0EEF41FC6B" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_EE657F070AC54DDCBA5CD56C53F3FFDC" + "MsmKey" = "8:_BFB995BCB8239D0D35E57B0EEF41FC6B" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_6CAF4782BEEB4150B37C0293B79F0069" + "MsmKey" = "8:_BFB995BCB8239D0D35E57B0EEF41FC6B" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_F62AEFC871D44831804BCD4DF25C23F0" + "MsmKey" = "8:_BFB995BCB8239D0D35E57B0EEF41FC6B" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_709E7345734C49C785344FF2FEB5F15C" + "MsmKey" = "8:_BFB995BCB8239D0D35E57B0EEF41FC6B" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_5B31A4E8F126425BA1A42D99C31B8454" + "MsmKey" = "8:_BFB995BCB8239D0D35E57B0EEF41FC6B" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_67B28C0C25A549578A5E328EA971DE36" + "MsmKey" = "8:_C274A2B2CA9C43BB8E680F1B33C2BB11" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_C2C7C844CF816EEE05C94D4477A24455" + "OwnerKey" = "8:_C3EDD553A32A0F38069B9AC4058185CA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_C2C7C844CF816EEE05C94D4477A24455" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_FF838842077D44EAA2A6348E18D08E79" + "MsmKey" = "8:_C2C7C844CF816EEE05C94D4477A24455" + "OwnerKey" = "8:_681A6EBA6A68461C95E7263C5490328E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" + "MsmKey" = "8:_C2C7C844CF816EEE05C94D4477A24455" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_0B60CEFE230E4633B1FD838B2E9E4D46" + "MsmKey" = "8:_C2C7C844CF816EEE05C94D4477A24455" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_C2C7C844CF816EEE05C94D4477A24455" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_9B2EFE50DAD1458E8932CCF4310BEC9F" + "MsmKey" = "8:_C2C7C844CF816EEE05C94D4477A24455" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "MsmKey" = "8:_C2FBE1D7563B4F8DB907BC4BB0F33118" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_9F396770E1B644CA889B7ED6A58E40DA" + "MsmKey" = "8:_C3014022A0AE4FC6A59AA6B444EB7B1E" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" + "MsmKey" = "8:_C33C1C1F529792A6FCED9909D574C98D" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_C33C1C1F529792A6FCED9909D574C98D" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_8620B1F0C2FA4D348B9E63F0BE9FA1ED" + "MsmKey" = "8:_C33C1C1F529792A6FCED9909D574C98D" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_6979A6B680CB47C7A69BE7860AF298F6" + "MsmKey" = "8:_C38759E967F84737B3F30A17513E4CEB" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_BE5D2C19D8FE4FA1BDF8F4B535872332" + "MsmKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_C3EDD553A32A0F38069B9AC4058185CA" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_D3B9100D444743C5A5B2BEADE3C79799" + "MsmKey" = "8:_C3EDD553A32A0F38069B9AC4058185CA" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_1393BDC59A6B4C81B84D5C2C618156EF" + "MsmKey" = "8:_C3EDD553A32A0F38069B9AC4058185CA" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_C9119A99605F402ABE71C62A7381323B" + "MsmKey" = "8:_C3EDD553A32A0F38069B9AC4058185CA" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_3B678EA0E9FA4D20B7D90D75DCAF300C" + "MsmKey" = "8:_C3EDD553A32A0F38069B9AC4058185CA" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_C3EDD553A32A0F38069B9AC4058185CA" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_C3F1B244B6B34159B02E05612D2DB2FA" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_243FEEBC941A41DD9C5F736248AFD819" + "MsmKey" = "8:_C4B9E91420EE4CADAE899A7F2A74799B" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_0AD2B80BD2AC492DB97EE4C5ED1BF5F8" + "MsmKey" = "8:_C4E024481F9141A0A7D82D763892B305" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_CAB5C2A388B34D1F874E72AC38354BFA" + "MsmKey" = "8:_C50A7A1A8EDE4206BE0B828DB5216837" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_53C949C71D0F422B8978AD416438B086" + "MsmKey" = "8:_C536AFA6573FE06581A3399E201C4859" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_C536AFA6573FE06581A3399E201C4859" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_0912E1C1C1F24DDCA531C6864D1665A8" + "MsmKey" = "8:_C55809C9E155444F9A5D4B5BC847935D" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" + "OwnerKey" = "8:_342A6CE3EF5E8C5170AA6C400613FF5B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_60307A9582FE2D7618125043293A02AB" + "MsmKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" + "OwnerKey" = "8:_D6144464659746A8AAA12CCE9508EEE0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_80FAF08BE91DC1EC96DC613154D44F7E" + "MsmKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" + "OwnerKey" = "8:_F50034E84445435DAAB8F14F1FE1E03F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_D4EC43B9F9144598017136DE430174D9" + "MsmKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" + "OwnerKey" = "8:_EEC77B01CA74259E38B4BF930D62BBCA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_9AA9B1640404D837BA8E590A2A7B3FDE" + "MsmKey" = "8:_C5C66681487F4179B25C87BB141A1601" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_A2C4BBDA6C653F878CF9F09DDB19EB67" + "MsmKey" = "8:_C630F7E8EA4840BAB1B2559D71483F8E" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" + "MsmKey" = "8:_C659DE23C00C4113A5B3AE9C1407DD25" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_F1D679BED009170305B2519CD78CA300" + "MsmKey" = "8:_C68B0CA281FD4B6D98E6226E53465377" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_3AF27C2F3C6F5550735A7366B1261EFF" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_002B35A47F685C337FD43749C4416446" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_8CC35151D8EB44179879DD6E1A3FEEBE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_214C0A61A7B4A26FDBEB0788B62D0089" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_8E44223A3DCA43E48F5BBBD55992A4CC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_AC9B28E0D99E4F1F515BA0BBE9459CE5" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_AAD83CEDDDC54AAFB0655F23A6225024" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_3032BD5A329D929A96C6738327C6631A" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_D147A209D52B47799F51651D4069C15E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_8BB9413DD232277D8EC384477B23E618" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_504E92556FF74DC6857BCBBB97FB7EB8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_89C50D3BE2F9490EBB5D778B96C32C9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_A9035D942941788E21A775971D3379AD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_45E53FB27049D042E5DED373E26F270F" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_19ECA032F766EDFBA4314CBFD71873F8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" - "OwnerKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_2024DBA65B2E695BEA2FE6EBD3454FF6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C46526CAB5A24576884D6EEAAB340FDE" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C4EB69ABB739EAA5F7A83AB70C81F466" - "OwnerKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" - "OwnerKey" = "8:_D499B5E2D6DE522B7109B3BAD3DECCE3" + "MsmKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" - "OwnerKey" = "8:_8DA7C6C81DDC4F94A07D257BE53DF8B3" + "MsmKey" = "8:_C7C4378630198E8FEAE1BFA8CFD591A2" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" - "OwnerKey" = "8:_0ADF9758C9EA4C82A9116965FD5C824A" + "MsmKey" = "8:_C7C4378630198E8FEAE1BFA8CFD591A2" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_C7C4378630198E8FEAE1BFA8CFD591A2" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" - "OwnerKey" = "8:_6257F8A9A74A453984E407D6CB916AF5" + "MsmKey" = "8:_C8225AB4F128DD5C462799E34B2089A7" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_C8225AB4F128DD5C462799E34B2089A7" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_C8501F70BD18823ADF0B44FD24726755" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" - "OwnerKey" = "8:_D27991107EA14C1C8B4A246C7658161E" + "MsmKey" = "8:_C8501F70BD18823ADF0B44FD24726755" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_C8501F70BD18823ADF0B44FD24726755" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_C914EBE43CDF4902AE0D19E96CF70C0B" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C599F411B318474096A28EEAF3F4DCC5" + "MsmKey" = "8:_C96BF04976E84586BDC7959B5441D238" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C5B0AE74BFAE45BA893232F4A15B6C27" + "MsmKey" = "8:_CAF73FC6756D481DA84E75224472AA35" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C5FBC84433A48A25627AD60ACD70CFA9" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_CB2A1C78BE69483C846E42C240F57994" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C5FBC84433A48A25627AD60ACD70CFA9" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_CB6C3806A5B43EEBDB09EB86EF760090" + "OwnerKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C5FBC84433A48A25627AD60ACD70CFA9" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_CB7900C58EB6431199E974BDC44043FC" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_6CB0D578F8CF994FED4ED272B99844CE" + "MsmKey" = "8:_CC37EBF295A7332587DED92372BE8CF7" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_7C38E8CFCE24417FA2A80EC4AC70D9F2" + "MsmKey" = "8:_CC37EBF295A7332587DED92372BE8CF7" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_6E350884A4BF44159F89904F4FDF6D50" + "MsmKey" = "8:_CC37EBF295A7332587DED92372BE8CF7" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_19FE79ED86B14135BF9ABBC86A76C182" + "MsmKey" = "8:_CCB130078DDD4B288794D03E93E5D82B" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_C0963962D778472C925FDA3E346DFD0F" + "MsmKey" = "8:_CCBFE906A96B44D6A430F23C40339B79" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_CD8824E528414EBDA5DCE3BA0A9528F8" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_C5B0AE74BFAE45BA893232F4A15B6C27" + "MsmKey" = "8:_CDC4036AF5D00A8FCCF3DE0224C4F001" + "OwnerKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_CDC4036AF5D00A8FCCF3DE0224C4F001" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_C17E953CE554458FA3D973414751D2CC" + "MsmKey" = "8:_CDC4036AF5D00A8FCCF3DE0224C4F001" + "OwnerKey" = "8:_BAF05666A62E4063B67A990DBB654458" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_B6288F8D68A9416A92DC90E280B06EA2" + "MsmKey" = "8:_CDC4036AF5D00A8FCCF3DE0224C4F001" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_C0D404D4D8454A858FA85D82CD92DF78" + "MsmKey" = "8:_CDC4036AF5D00A8FCCF3DE0224C4F001" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_079009E7E5124031B6204AAC7FF67A9A" + "MsmKey" = "8:_CDC4036AF5D00A8FCCF3DE0224C4F001" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_EE657F070AC54DDCBA5CD56C53F3FFDC" + "MsmKey" = "8:_CDC4036AF5D00A8FCCF3DE0224C4F001" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_6CAF4782BEEB4150B37C0293B79F0069" + "MsmKey" = "8:_CDC4036AF5D00A8FCCF3DE0224C4F001" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_A6339429BB9B4B8993C3D9BB29ED86EE" + "MsmKey" = "8:_CDF71BE081FC4947BBF459AC8209ED17" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_1797384676994F4A8D20EA3733C18E0C" + "MsmKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_866E8D70379E4EC8B625FFE1F47FD889" + "MsmKey" = "8:_CE6D89188B1C43438BB2A2F8F3334887" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_D132FA26F719439394D7C487765D7801" + "MsmKey" = "8:_CEB3E300107F4C12BEC487845DA4E174" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_F62AEFC871D44831804BCD4DF25C23F0" + "MsmKey" = "8:_CF64DAC62FED43EE9B6F411BE5FBF065" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_0E68B1E82AAD49399267ACAB562EC6F5" + "MsmKey" = "8:_D0135A8E1515400F82789A103488E9A7" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_12335B8BAE0A4F779B4F30C11E447EB8" + "MsmKey" = "8:_D0BD19994C2940679E82F355F7717861" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_67B28C0C25A549578A5E328EA971DE36" + "MsmKey" = "8:_D1035DA311AD4850946354F1993CC230" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_0205F5D1886848139710911DD96B405B" + "MsmKey" = "8:_D147A209D52B47799F51651D4069C15E" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_E9B8002F9879403F994F719F640BFF20" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_368297E8E6732BD28622CB59EE965020" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_9AF4DF764E3D402FA7B373767289455C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_51F4D594D73E477E856528EBC42B0F9D" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_5D4ACCBB99CE4379BFF48836F57C9CDB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_7A5B16731EEC4355B576D7DDFCA358BF" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_A382D02B948C4B54803DC488B33F0B3A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_271011AD979B4CBBBC9E510C783444B0" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_C630F7E8EA4840BAB1B2559D71483F8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_5B852E420FAF4CC99F72BCEC55D0342E" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_1359C7CA18A745EA8445F44058628957" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_FC262487CAE543089CB587C8166C581E" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_99C527251870413C95F2B9A8CF693728" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_32EF223E0EFB40A88EBE556C8EAA4AF3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_FF838842077D44EAA2A6348E18D08E79" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_87840206D46747A097E4ED2B15D78CFA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_81776EE3B0D14F098DEF71346C834416" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_0B60CEFE230E4633B1FD838B2E9E4D46" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_A5C386CA7E4D475C8869A687EBEF8A04" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_84D1E150F94A4734AF69639266E603A9" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_CCB130078DDD4B288794D03E93E5D82B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_55842097A1B740A79E6644F235B0C1AF" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_EC057A65CB2191A3A75D32D39E2C9281" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_A8F6731403774C40A8E480A587DFE9C2" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_8446B116F7184398BD545B60AFF3FC46" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_BAF05666A62E4063B67A990DBB654458" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_0327CD370EE34AA4A8DD54EBBF99AC9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_DA87F4E078FD438E9CBA27D5FD4B0543" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_C7B8B31323F147A19100C0D701B4101C" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_3B72D4DBB2DB48BFAD0801684500E08D" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_95FA2F22712340978792F943907E95B4" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_736EDDDBC3584E7A83D01BE2C66DBF5B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_E0DD91B6820043019824432F3CCAC570" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_9C4BE12B0CD74B7CBBD18F04CB7C4D82" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_ACC9D7826CBE472A8766CAF892A6B8A9" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_A54C36C6AF724C4298C1C44B711EEBA1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_2F1F84E9CA7D46DF9F9739205F12F95B" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_197BB23CB89E43A5B6ADC5825C6EA03C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_02848728AD0D442B974E23D647DB20B8" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_B2011D514CF04C259ABAA54E70395610" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_BFCE0B7A76304ACAA2D84D64CE0EC7AB" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_16EB40669FCA68C2E34800ABC4D81F41" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_04A14015937743D8AA55044D7126131B" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_1947F3829A764DD2A928A23101DE2206" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_01D43FE872054FCF8A67E90ED85E1CC4" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_DECDF56F984E473E92323CACE22A1C1C" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_8D916F703BFB47DEB61E0FF69D9F6189" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_EABF3921F3284D87909D094D538FA526" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_9F396770E1B644CA889B7ED6A58E40DA" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_F8B53535DABD4E7D5E5951C921AC682A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_89C50D3BE2F9490EBB5D778B96C32C9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_8620B1F0C2FA4D348B9E63F0BE9FA1ED" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_25E58EB806A4EC8427C4EB8A218A5087" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_AF2FD3529ACE48B6A5497A6197A020AA" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_14D46FEB93FA4D299E6056B1E348312F" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_9C7BC3B28FEF0D6A3C7DF01D18722E6C" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_5BFFFF7FD7100CE916F389F8186B56E4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_E74C8D77D5E37A69B6984831650003C7" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_0D1200924CA21F19FF53C62B7B8354FF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_DE4CD1E105AF4B87366D07C46F4C2663" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_80443D2C922030B6CD68CCA745F0E5B1" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_3FDC59E51DD676E67FAE73192661AC20" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_BD3B5B85C4E445248560F41BD0DE8BE7" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_64E7B9EBDBAFB1B17E217C305DAA5B43" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_CDC750ABB7DA4D5BB101583406E8DB9E" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_557A36316CC1A43CEFC65FDF1FB75164" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_0AD2B80BD2AC492DB97EE4C5ED1BF5F8" + "MsmKey" = "8:_D1527BD8144CE83D6E988DAFE1DBBA47" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_CAB5C2A388B34D1F874E72AC38354BFA" + "MsmKey" = "8:_D1536A9A50C04C1C9CE3347977FB6F6A" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_B493379D394F49F2A257ACE3C4BEF216" + "MsmKey" = "8:_D15EF60D825A48459AD557A4AF7FB791" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_D1835B3FF98AA2BAE46388B5977A4784" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_0912E1C1C1F24DDCA531C6864D1665A8" + "MsmKey" = "8:_D1835B3FF98AA2BAE46388B5977A4784" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_E0A90872657427483F053288CC41F7BF" + "MsmKey" = "8:_D1835B3FF98AA2BAE46388B5977A4784" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_818C90D1A56563131B63B1CA3CA576F3" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_C6B0DE3EF58F14930CF8663D2B67CFBD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_655FCCA1E86A4494A1245290A41E97B8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_D4EC43B9F9144598017136DE430174D9" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_55F9FC11F41F4C3EBF98220500974FBF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_9AA9B1640404D837BA8E590A2A7B3FDE" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_6AD6EEB4586A4ACF9B3E9F11A6F644DC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_A5281AE19E3C0466830CC797A9C17602" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_C11E19B0EB4B8A1E84235A23B46ABD98" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_5A3B9691BBA0905D20072B75D246E43D" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_7A001E5060F007B76553095966B3DD3A" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_CD8824E528414EBDA5DCE3BA0A9528F8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_F209B5DB23FDBB924E78243E39A49B2D" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_A0CAEAFA8AF476AE9779326B71CAD208" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_4A127626130436A8485B10D9D040C3F8" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_F1D679BED009170305B2519CD78CA300" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_5B33C61F5CC73F6B67F7641FDCA19E32" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_887286F4C29C1F45FAF43D3E3165DD9B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_BBD6FAD81E26ECE30F40C28556D906CE" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_D712A5E055A3EC30011B6E0718A0BBF1" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_13C0B21BEF168B0190E20DD315BFA3E0" + "MsmKey" = "8:_D1C2C90966B214685D6072ECB20B5548" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_BA6689085C8CEBFE45F4F582C7CA6BE7" + "MsmKey" = "8:_D21D86E7F5F54FBF8413690CA489839C" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" + "MsmKey" = "8:_D2D9F77E68304266A99FC9CB4D0760C2" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_14F2615D05BEF859A9B54262695DFFBC" + "MsmKey" = "8:_D56039FB07C948599C4514959B5603C9" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_C764A96E38DC71EE64244082FCEF9637" + "MsmKey" = "8:_D6144464659746A8AAA12CCE9508EEE0" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_002B35A47F685C337FD43749C4416446" + "MsmKey" = "8:_D61738826E13F256E5D5365099EA0D68" + "OwnerKey" = "8:_3F7191903485AE336DDBE8F265888B67" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_D61738826E13F256E5D5365099EA0D68" + "OwnerKey" = "8:_FEEDC4F58B6148F79B34BCD14DEF1B1B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_D61738826E13F256E5D5365099EA0D68" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_08F2AD45918FE7A8AD9BEDB57716F237" + "MsmKey" = "8:_D61738826E13F256E5D5365099EA0D68" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_13B3F1052A56A2AA76DB87CEE3FDEE7A" + "MsmKey" = "8:_D6246B49359C12A914E1F377C60A5384" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_B16E542C910B2E0537C34147E3F2A772" + "MsmKey" = "8:_D6246B49359C12A914E1F377C60A5384" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_BB9997D921573F9889C5EB78392A5460" + "MsmKey" = "8:_D6246B49359C12A914E1F377C60A5384" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_AC9B28E0D99E4F1F515BA0BBE9459CE5" + "MsmKey" = "8:_D724F156DB414BA6AB7ABFED86061864" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" + "MsmKey" = "8:_D811630E15194F8E96C950896FE98C7B" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" + "MsmKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" + "OwnerKey" = "8:_55F9FC11F41F4C3EBF98220500974FBF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_5DECA8430E15A27DB07E2F19865BE42D" + "MsmKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" + "OwnerKey" = "8:_6AD6EEB4586A4ACF9B3E9F11A6F644DC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_779089C4535D1F4BE27BCFA5629CC6B4" + "MsmKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" + "MsmKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" + "MsmKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_88A2108E2171BF0E64073F268672989C" + "MsmKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" + "MsmKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" + "OwnerKey" = "8:_D147A209D52B47799F51651D4069C15E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_C1A2429D7482783A256CC2F2BE26BCBD" + "MsmKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_21170693B62D4230D2C051E5CCCE44DB" + "MsmKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" + "MsmKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" + "OwnerKey" = "8:_A9035D942941788E21A775971D3379AD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_8BB9413DD232277D8EC384477B23E618" + "MsmKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" + "OwnerKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_B28C76E809A91245E9FA657909D423F4" + "MsmKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_45E53FB27049D042E5DED373E26F270F" + "MsmKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" + "OwnerKey" = "8:_887286F4C29C1F45FAF43D3E3165DD9B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" + "MsmKey" = "8:_D833F480766C340EF20C1D1A2343E3A5" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_86A788B950814C0859DE3243B664552F" + "MsmKey" = "8:_D8979AC1BB2F4805A6F3910449C8D2A9" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" + "MsmKey" = "8:_D8CE98FDC0B643A5BA490D9FCCBADE21" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_8066AEF048BA9A2FA7A554563AC0D3E4" + "MsmKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" + "MsmKey" = "8:_D8F5958646964348B09B2F5870ED1BE0" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "OwnerKey" = "8:_BE0035EF7CC7EF1AF1686515777E4C01" + "MsmKey" = "8:_D91B6235A19E4D5D86FDB5318B05BBD7" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C739986D38D4428AA8E16DD93CA8F2C8" + "MsmKey" = "8:_D96CCFFEF1EB441BAFA0B04DA20ADF5A" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C764A96E38DC71EE64244082FCEF9637" - "OwnerKey" = "8:_002B35A47F685C337FD43749C4416446" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_0C1A606DD62F7131D94DB428C43DB5A6" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C764A96E38DC71EE64244082FCEF9637" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_55F9FC11F41F4C3EBF98220500974FBF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C764A96E38DC71EE64244082FCEF9637" - "OwnerKey" = "8:_7A5B16731EEC4355B576D7DDFCA358BF" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_1359C7CA18A745EA8445F44058628957" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C764A96E38DC71EE64244082FCEF9637" - "OwnerKey" = "8:_FC262487CAE543089CB587C8166C581E" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C764A96E38DC71EE64244082FCEF9637" - "OwnerKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C764A96E38DC71EE64244082FCEF9637" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C764A96E38DC71EE64244082FCEF9637" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_B02AC42471634FDDB8675ACE5C4A140D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C764A96E38DC71EE64244082FCEF9637" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_EC057A65CB2191A3A75D32D39E2C9281" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C764A96E38DC71EE64244082FCEF9637" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C764A96E38DC71EE64244082FCEF9637" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C764A96E38DC71EE64244082FCEF9637" - "OwnerKey" = "8:_5B33C61F5CC73F6B67F7641FDCA19E32" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C764A96E38DC71EE64244082FCEF9637" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_9C4BE12B0CD74B7CBBD18F04CB7C4D82" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C764A96E38DC71EE64244082FCEF9637" - "OwnerKey" = "8:_13C0B21BEF168B0190E20DD315BFA3E0" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C764A96E38DC71EE64244082FCEF9637" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C7B8B31323F147A19100C0D701B4101C" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C84258B5F9CB4858B84F83F26C0CA7FB" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_8C247F70094F1646915D86F80E1A0FF1" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_BC55DE2D96EE4BE7B63A10E87BA44D07" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_89C50D3BE2F9490EBB5D778B96C32C9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_079009E7E5124031B6204AAC7FF67A9A" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_2CA572F0801641B0A319B8A36405E97C" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_74DDAC05ED86A917F97AC419100EFF7C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_DB6DA2D86C6F4DC68545755D67200523" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_5BFFFF7FD7100CE916F389F8186B56E4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_70F8B2B0578A45A09CEC90DCB99959D2" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_55842097A1B740A79E6644F235B0C1AF" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_F9D45EB45753FAD80DFD1C6F7ADF3844" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_A8F6731403774C40A8E480A587DFE9C2" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_8446B116F7184398BD545B60AFF3FC46" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_D9B04703426F5AEBC70BE52A33DA7633" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_3B72D4DBB2DB48BFAD0801684500E08D" + "MsmKey" = "8:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_95FA2F22712340978792F943907E95B4" + "MsmKey" = "8:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "MsmKey" = "8:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_1F07CC99CC9947599D83707F1D15766A" + "MsmKey" = "8:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_9F396770E1B644CA889B7ED6A58E40DA" + "MsmKey" = "8:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" + "MsmKey" = "8:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_DA09F5E866E3BB9E0C746846C6A946E4" + "OwnerKey" = "8:_95D1BB32E25D6A28E121A3E5AB381063" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_DA09F5E866E3BB9E0C746846C6A946E4" + "OwnerKey" = "8:_D0BD19994C2940679E82F355F7717861" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_DA09F5E866E3BB9E0C746846C6A946E4" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_53C949C71D0F422B8978AD416438B086" + "MsmKey" = "8:_DA09F5E866E3BB9E0C746846C6A946E4" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_DA43343BE0AA49CCAC8C6F8C11231267" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_E0A90872657427483F053288CC41F7BF" + "MsmKey" = "8:_DA87F4E078FD438E9CBA27D5FD4B0543" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_DA9A5A57867E4C3CA3A26AD724AD35EA" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_385E4C4F5EED8818E2DF6396C14184B2" + "MsmKey" = "8:_DB755541B20243BDB9467F3470981BC4" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_60307A9582FE2D7618125043293A02AB" + "MsmKey" = "8:_DBB40A1C41C34EFFA1F4D9EDD04CA79D" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_DBD1C464BFA47A6D07EF347445419ECD" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_A2C4BBDA6C653F878CF9F09DDB19EB67" + "MsmKey" = "8:_DBD1C464BFA47A6D07EF347445419ECD" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_F209B5DB23FDBB924E78243E39A49B2D" + "MsmKey" = "8:_DBD1C464BFA47A6D07EF347445419ECD" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_3AF27C2F3C6F5550735A7366B1261EFF" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_BA6689085C8CEBFE45F4F582C7CA6BE7" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_7BEAA3F3CE3A41E1B5E7AA81B64066D9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_AC9B28E0D99E4F1F515BA0BBE9459CE5" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_7776F0B3F25D4F958A79A3B702D72900" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_3032BD5A329D929A96C6738327C6631A" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_EB98E04073DF4D0A81057B1F53EC6632" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_0B251358B54D7DCB9614FAA7B02B6091" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_50799A5D3AB2F77ABC504A9CE0038D64" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" - "OwnerKey" = "8:_8BB9413DD232277D8EC384477B23E618" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C8AFA500EEFD42B3900E727AD825322D" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C8D235EB2C8C44488CC95E6B770AC24F" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C8DFF8EA726E42CEA62AE696AB8E73F2" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C9119A99605F402ABE71C62A7381323B" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C921BA89031740C3BCDC73B584CC7E9A" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_9CA2658ACD8741F43E77E56D9F53DCD5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C924905900BE468CABD14BEB7314F26C" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_CA9EFFE3C824C0519F9E371FA2EEC3B6" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_59E9FDC913F34D1FA5C8E2F066ABD4C6" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_3205AE3C3826417C96B22E013AB23961" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_79CFE04F74314C5AAA631C8A6835BA7E" + "MsmKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" + "OwnerKey" = "8:_5A5C71EDF0B2920349215E6664C0FDC3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_707F3FA8E34A4681B3ADF419E6724458" + "MsmKey" = "8:_DCED769F3CED40F68BBF793A3190390F" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_EA7D4C3F94624D60B54A1DAC12893006" + "MsmKey" = "8:_DD6992CD0ACCFF6B889A1ADC7D2DAE43" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_FD80D55FA9E54BA1BB5D21F933BDB1C1" + "MsmKey" = "8:_DD6992CD0ACCFF6B889A1ADC7D2DAE43" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_B11750BFE84B4302859140E5DB4A6EF7" + "MsmKey" = "8:_DD9267F304CD86680605583251BC35EC" + "OwnerKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_8426152F661C4C81AB2C8349F4F1D286" + "MsmKey" = "8:_DD9267F304CD86680605583251BC35EC" + "OwnerKey" = "8:_ABF50DEAD3F44E68B097345106E563D8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_311C9D1D07FB4B038396A7DB0015BAF1" + "MsmKey" = "8:_DD9267F304CD86680605583251BC35EC" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_D70666FC24FC4568897AD2D90357364A" + "MsmKey" = "8:_DD9267F304CD86680605583251BC35EC" + "OwnerKey" = "8:_120D152D0B8B41469B8B3B4DF718F015" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_7FF7FE0D54E74328BB96BC3FCCE672CF" + "MsmKey" = "8:_DD9267F304CD86680605583251BC35EC" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_47A0E1EF51BB4C9DB3A056522E4E57A0" + "MsmKey" = "8:_DD9267F304CD86680605583251BC35EC" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_62E2EB85757ECD521EFB47ED25F86AEC" + "MsmKey" = "8:_DD9267F304CD86680605583251BC35EC" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_5B6F8058482CBAB6EDE2388612B42198" + "MsmKey" = "8:_DD9267F304CD86680605583251BC35EC" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_BC8A1B78A0D1492B3C3EFB76715FC417" + "MsmKey" = "8:_DD98189F70C149948FEBEDB7FFD024BB" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_8B357B058AA9E7346030D4EE55729A68" + "MsmKey" = "8:_DDB9E5D5DD0E4B24962ABC7F8132B4A2" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA7D4C375C8AE0BA7A9C4B569915BC5C" - "OwnerKey" = "8:_9E8E97A46BDC890CCE460FAF9E5D9FD1" + "MsmKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA9EFFE3C824C0519F9E371FA2EEC3B6" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_DE4CD1E105AF4B87366D07C46F4C2663" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA9EFFE3C824C0519F9E371FA2EEC3B6" - "OwnerKey" = "8:_59E9FDC913F34D1FA5C8E2F066ABD4C6" + "MsmKey" = "8:_DE4CD1E105AF4B87366D07C46F4C2663" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA9EFFE3C824C0519F9E371FA2EEC3B6" - "OwnerKey" = "8:_B11750BFE84B4302859140E5DB4A6EF7" + "MsmKey" = "8:_DE4CD1E105AF4B87366D07C46F4C2663" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA9EFFE3C824C0519F9E371FA2EEC3B6" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_DE4CD1E105AF4B87366D07C46F4C2663" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CA9EFFE3C824C0519F9E371FA2EEC3B6" - "OwnerKey" = "8:_62E2EB85757ECD521EFB47ED25F86AEC" + "MsmKey" = "8:_DE4CD1E105AF4B87366D07C46F4C2663" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CAB5C2A388B34D1F874E72AC38354BFA" + "MsmKey" = "8:_DFC472D488BD43128D784076A4681591" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CB02F647470F494189623712907E935C" + "MsmKey" = "8:_E0A24BFA11AB3044C761E3C573C63E35" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E0A24BFA11AB3044C761E3C573C63E35" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E0A24BFA11AB3044C761E3C573C63E35" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E0AA6902979947A58079211F8F730078" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CB1F155372950F93B93A4149AD30F430" - "OwnerKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" + "MsmKey" = "8:_E10F32141108468157C13370CD7F7C81" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CB5653876B1E7402162D97E2078FD8F7" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_E10F32141108468157C13370CD7F7C81" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CB5653876B1E7402162D97E2078FD8F7" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_E10F32141108468157C13370CD7F7C81" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CB5653876B1E7402162D97E2078FD8F7" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_E17EB625D338F9B7C8CD609BA23059D2" + "OwnerKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CB5653876B1E7402162D97E2078FD8F7" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" + "OwnerKey" = "8:_C536AFA6573FE06581A3399E201C4859" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CB5653876B1E7402162D97E2078FD8F7" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" + "OwnerKey" = "8:_963AEFEC7C58473BA4C5A9549624357C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CB5653876B1E7402162D97E2078FD8F7" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" + "OwnerKey" = "8:_6F56D84C89834F49BF3F9869A9EE6C21" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CB90C612EFF646FAB59656A00BCE7784" + "MsmKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CC5DE103F0B1626462D98943314907C9" - "OwnerKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" + "MsmKey" = "8:_E24C55B98E6242C3B31344952E3ED6B6" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CDC750ABB7DA4D5BB101583406E8DB9E" + "MsmKey" = "8:_E2E5B1A173384F57A03F090CD727C49F" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CE06A3E8903D4CAA961DC66421FF050D" + "MsmKey" = "8:_E2FDCF13274F4F67A89C0CD8661BAD11" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CE947B66B9254A22BF0CE0672C657A22" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_E332A6F95C8C5F2A442A4197B94A81F9" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_E332A6F95C8C5F2A442A4197B94A81F9" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" + "MsmKey" = "8:_E332A6F95C8C5F2A442A4197B94A81F9" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" + "MsmKey" = "8:_E332A6F95C8C5F2A442A4197B94A81F9" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_E332A6F95C8C5F2A442A4197B94A81F9" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_E332A6F95C8C5F2A442A4197B94A81F9" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CFD22DE1255E4E85B4E653BDC727530D" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_E3624B09B1B18A0909D083D27DB90604" + "OwnerKey" = "8:_1F05C5740019436CA4072317066FB1AC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D03555126FF34A3D992D5000D825A1A3" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_E3624B09B1B18A0909D083D27DB90604" + "OwnerKey" = "8:_DD6992CD0ACCFF6B889A1ADC7D2DAE43" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D08DD0666CC842F1AD8325C1C827285E" + "MsmKey" = "8:_E3D571DDD2B44063B2081E8535FD46E6" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D10BDDA5EB364256BAAC5CB1AF12B03B" + "MsmKey" = "8:_E43B59AB67864BD0944C88D3E25021E7" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D132FA26F719439394D7C487765D7801" + "MsmKey" = "8:_E502D4E6B4CE477E9C8584C2FA1CB3A7" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D142F4C5A6246588440689DF4036E8F2" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_8F59FC9529DC0C5DC4D6F0007F474362" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D142F4C5A6246588440689DF4036E8F2" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D142F4C5A6246588440689DF4036E8F2" - "OwnerKey" = "8:_C599F411B318474096A28EEAF3F4DCC5" + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_FE8069F25C7542899AA4D3DA4F912B1C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D142F4C5A6246588440689DF4036E8F2" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_903B6A4EF47E43C5B1EF318254F0FC56" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D142F4C5A6246588440689DF4036E8F2" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D142F4C5A6246588440689DF4036E8F2" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_975852014F5B4FACBBDF5C881DA76681" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D142F4C5A6246588440689DF4036E8F2" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_DA87F4E078FD438E9CBA27D5FD4B0543" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D142F4C5A6246588440689DF4036E8F2" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D142F4C5A6246588440689DF4036E8F2" - "OwnerKey" = "8:_6FB82D0B427BFCBADED30AE11135C003" + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_C8225AB4F128DD5C462799E34B2089A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D1486B9C39CE4CC093E398FFD82384C5" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D193446CE76C4B37A00A5D7ABF1F2335" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D1D543DAD7744FF4BE1A766D354AFE45" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D2675585B625457E890FAA451F3B8670" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D27991107EA14C1C8B4A246C7658161E" + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_25E58EB806A4EC8427C4EB8A218A5087" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E5947AAC70DDA0C7E95740380DDB4357" + "OwnerKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E5F605D98C8CBEBB00C09D5EC8C8127B" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E5F605D98C8CBEBB00C09D5EC8C8127B" + "OwnerKey" = "8:_74C989C8B18A40A885321F7F8188A83A" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E5F605D98C8CBEBB00C09D5EC8C8127B" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E5F605D98C8CBEBB00C09D5EC8C8127B" + "OwnerKey" = "8:_E6E84499A1CB4A6A265D8C05BD0FFA40" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E6D8C4B69849495883A1497295063547" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D27AEA7FE3F328B5BB4B8A02ADDE13CF" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_E6E84499A1CB4A6A265D8C05BD0FFA40" + "OwnerKey" = "8:_1EF904821BA64F522142ACB4C8E61033" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E6E84499A1CB4A6A265D8C05BD0FFA40" + "OwnerKey" = "8:_55EFD5C9477B4C7EA11F78E3928B0DC7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E6E84499A1CB4A6A265D8C05BD0FFA40" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D27AEA7FE3F328B5BB4B8A02ADDE13CF" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_E6E84499A1CB4A6A265D8C05BD0FFA40" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D27AEA7FE3F328B5BB4B8A02ADDE13CF" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_E72F0DA7D97E4A83ADC0D935CCEBAA2C" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D27FF6909BB24D13BCEE5E0AB0B89913" + "MsmKey" = "8:_E738C8C29E9E4034A27CFF1EC14A39C7" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D346B9B850D84EABAEB1E259694C69C5" + "MsmKey" = "8:_E73BF78D3FB8428D9E7155229D73455E" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D3B9100D444743C5A5B2BEADE3C79799" + "MsmKey" = "8:_E744598D05BD4A72B9CC387E36733113" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D470B254FA3D41358525D56D2B5CD107" + "MsmKey" = "8:_E7B7F39B3A4E44929B4467B0F77CD7B3" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D49878CA78FA4ADE8CBDC913604B6C59" + "MsmKey" = "8:_E7FCDF731C3B4D35AEA32CF96F94DCB9" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D499B5E2D6DE522B7109B3BAD3DECCE3" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_E805B41593F64EE9B4641C1AC3146888" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D499B5E2D6DE522B7109B3BAD3DECCE3" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D499B5E2D6DE522B7109B3BAD3DECCE3" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D4EC43B9F9144598017136DE430174D9" - "OwnerKey" = "8:_60307A9582FE2D7618125043293A02AB" + "MsmKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D4EC43B9F9144598017136DE430174D9" - "OwnerKey" = "8:_BC55DE2D96EE4BE7B63A10E87BA44D07" + "MsmKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D4EC43B9F9144598017136DE430174D9" - "OwnerKey" = "8:_53C949C71D0F422B8978AD416438B086" + "MsmKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "MsmKey" = "8:_E8BE71CCC5174E3DA8ADD6585C0D9570" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" - "OwnerKey" = "8:_64563FACCCB9F211605BD1F9E5E8CB12" + "MsmKey" = "8:_E9DAA898D8564160E7A21A6605813D2D" + "OwnerKey" = "8:_B69725EDCD9F8B8A68B0A07C5CD48621" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E9DAA898D8564160E7A21A6605813D2D" + "OwnerKey" = "8:_BDE87E6E1B7A4905A9CEB9E5C03878BE" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_E9DAA898D8564160E7A21A6605813D2D" + "OwnerKey" = "8:_D724F156DB414BA6AB7ABFED86061864" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" - "OwnerKey" = "8:_0205F5D1886848139710911DD96B405B" + "MsmKey" = "8:_E9DAA898D8564160E7A21A6605813D2D" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" - "OwnerKey" = "8:_17760E146DF74573A3BDC64BB120A84A" + "MsmKey" = "8:_E9DAA898D8564160E7A21A6605813D2D" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_E9DAA898D8564160E7A21A6605813D2D" + "OwnerKey" = "8:_AD573111A7F14C01ABAD569CED96D350" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" - "OwnerKey" = "8:_1947F3829A764DD2A928A23101DE2206" + "MsmKey" = "8:_E9DAA898D8564160E7A21A6605813D2D" + "OwnerKey" = "8:_56340E8817D0425AA6F13E35C99A2EF1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" - "OwnerKey" = "8:_82A6CF9F4FD84C679D36AEEDBB1FCE86" + "MsmKey" = "8:_E9DAA898D8564160E7A21A6605813D2D" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" - "OwnerKey" = "8:_80443D2C922030B6CD68CCA745F0E5B1" + "MsmKey" = "8:_E9DAA898D8564160E7A21A6605813D2D" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" + "MsmKey" = "8:_E9DAA898D8564160E7A21A6605813D2D" + "OwnerKey" = "8:_46364AC2527B05575C1A7DC2C4A003FE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_E9DAA898D8564160E7A21A6605813D2D" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_E9DAA898D8564160E7A21A6605813D2D" + "OwnerKey" = "8:_BF5739FDB21B5BC85A300B57B07DB939" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" - "OwnerKey" = "8:_EDA76A729DD4307C7627100FBBAE26ED" + "MsmKey" = "8:_E9DAA898D8564160E7A21A6605813D2D" + "OwnerKey" = "8:_9C701E2C9CEBECFB3063D33552E310F7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D5476A023FBF43CAE5EAF7BC70796886" - "OwnerKey" = "8:_544D1ECC5CBCC852A9C47AE5139F6399" + "MsmKey" = "8:_EA379DBB2DF5E7F187B81469EDC10741" + "OwnerKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D5D99E88A3A04486994B133889AF2CCC" + "MsmKey" = "8:_EA837FA84860436DAAD8D64D941B280E" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D70105EFCEBA442B98082B3C141A8AD9" + "MsmKey" = "8:_EA8D27EC4FC7094D6938CB2A9756B429" + "OwnerKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EABF3921F3284D87909D094D538FA526" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D70666FC24FC4568897AD2D90357364A" + "MsmKey" = "8:_EB98E04073DF4D0A81057B1F53EC6632" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D706847CA9704803AFE057226793B64A" + "MsmKey" = "8:_EBBABB825D074329A7E5B1915C3232AF" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D712A5E055A3EC30011B6E0718A0BBF1" - "OwnerKey" = "8:_13C0B21BEF168B0190E20DD315BFA3E0" + "MsmKey" = "8:_EC057A65CB2191A3A75D32D39E2C9281" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D712A5E055A3EC30011B6E0718A0BBF1" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_EC057A65CB2191A3A75D32D39E2C9281" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D712A5E055A3EC30011B6E0718A0BBF1" - "OwnerKey" = "8:_FC262487CAE543089CB587C8166C581E" + "MsmKey" = "8:_EC057A65CB2191A3A75D32D39E2C9281" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D712A5E055A3EC30011B6E0718A0BBF1" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_EC1CFBB502EB4FB9AD5C501435FC8921" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D712A5E055A3EC30011B6E0718A0BBF1" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D712A5E055A3EC30011B6E0718A0BBF1" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D712A5E055A3EC30011B6E0718A0BBF1" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_54BF7061F9C747AC8812765DBF13E4FC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D7583FB04FBA47C8B7321E56AF459031" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" - "OwnerKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_C630F7E8EA4840BAB1B2559D71483F8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" - "OwnerKey" = "8:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_FE8069F25C7542899AA4D3DA4F912B1C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_CE376B1E0C914C7FA20720E96A734E2F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" - "OwnerKey" = "8:_7A5B16731EEC4355B576D7DDFCA358BF" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" - "OwnerKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_B13A099F228149CDB35ED8B4D88ACEDE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" - "OwnerKey" = "8:_6257F8A9A74A453984E407D6CB916AF5" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_975852014F5B4FACBBDF5C881DA76681" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_C8225AB4F128DD5C462799E34B2089A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" - "OwnerKey" = "8:_D499B5E2D6DE522B7109B3BAD3DECCE3" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_62667E51DDAC4C82A79030A542EB7509" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" - "OwnerKey" = "8:_5B33C61F5CC73F6B67F7641FDCA19E32" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" - "OwnerKey" = "8:_002B35A47F685C337FD43749C4416446" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D831A6BFB38CDEE31BFE4F9EFAEEBDDC" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D831A6BFB38CDEE31BFE4F9EFAEEBDDC" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D831A6BFB38CDEE31BFE4F9EFAEEBDDC" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D8CC51C9CF1742878EF7566CFF9CA640" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_1DB0820845EDE427EC72C63B74AB812A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D95667BB0BE960569CE9FD00654E9D8C" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D95667BB0BE960569CE9FD00654E9D8C" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_A76A17A95231B9F651C86B8747D361A7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D95667BB0BE960569CE9FD00654E9D8C" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D969904EDA3D42E9B175DFF029D96C47" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_C57DC3BE85AD71C60002B330DECCCFCE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D98AF936095545A4A7CCE03DFBB0EC62" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_EC3A0311DD85F43D63F8C76ED4C88EE6" + "OwnerKey" = "8:_08B2A4B0AE329FAEEC9E36D8907702E9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_EC7AF235DA19AF381962502B470A8A30" + "OwnerKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" - "OwnerKey" = "8:_82FB452E40D54EE1B060D771EF4AC513" + "MsmKey" = "8:_EC8AD8267010F2D7915E238E2AC5218C" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_EC8AD8267010F2D7915E238E2AC5218C" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_EC8AD8267010F2D7915E238E2AC5218C" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" - "OwnerKey" = "8:_93D38D3AABD741FEA3FAE5F12673BA4E" + "MsmKey" = "8:_ECBDCCED98AC46C59E8FCB78D0C523E3" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_D9B27F97F8364272BFC062C329454BD6" + "MsmKey" = "8:_ED282BD291954FCF8BEFDA9D27F67BBE" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DA4DB9AAAE444B209454DBE3ADC1E15D" + "MsmKey" = "8:_ED6EF431B71B461098C1E38F9513C0A3" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DAA20B5745500E7FDCA65B7ABE6A042B" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_EDCDF4FA15AC1B4C43D09F8B96C20B7A" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DAA20B5745500E7FDCA65B7ABE6A042B" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_EDCDF4FA15AC1B4C43D09F8B96C20B7A" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DB3E5FAFF6AB44D0B20B4355C0FEAB68" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_EDCF4173C63D6E3DBE3EBD16AB57A3BD" + "OwnerKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DB6DA2D86C6F4DC68545755D67200523" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DBD627086CF44A91BE97CB36B87CD8D7" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_ADFF45CA46874E0AA1CDD575EDFB20C4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DC21853E6873482290484023DCAA2629" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_A382D02B948C4B54803DC488B33F0B3A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DC27C0EBA63D45A09DE6527CC6009B3C" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_C630F7E8EA4840BAB1B2559D71483F8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DC38E9890590405295D05C0FA8652D61" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_ABF50DEAD3F44E68B097345106E563D8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DC5BA24737434CFC93737655BE821203" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DC86BEE9EFC84BA699CC5CBF9BFAE67E" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DC944ED3DEFB4DC3AB77F27A04FEC892" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_0327CD370EE34AA4A8DD54EBBF99AC9E" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_DA87F4E078FD438E9CBA27D5FD4B0543" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_036F72A4E2944377BC83DA4863D3DA37" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_55F146ECD4904D29B3661881E3DD89FB" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_9C4BE12B0CD74B7CBBD18F04CB7C4D82" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_197BB23CB89E43A5B6ADC5825C6EA03C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_B41CF285191B458BB15E99523C5B2A40" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" - "OwnerKey" = "8:_88A2108E2171BF0E64073F268672989C" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_62667E51DDAC4C82A79030A542EB7509" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" - "OwnerKey" = "8:_866E8D70379E4EC8B625FFE1F47FD889" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_CF64DAC62FED43EE9B6F411BE5FBF065" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" - "OwnerKey" = "8:_D132FA26F719439394D7C487765D7801" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_73D3FD7993624E07B5E561B11755AC2B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" - "OwnerKey" = "8:_F62AEFC871D44831804BCD4DF25C23F0" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_CE6D89188B1C43438BB2A2F8F3334887" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_16EB40669FCA68C2E34800ABC4D81F41" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" - "OwnerKey" = "8:_01D43FE872054FCF8A67E90ED85E1CC4" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_9818F96B07084AA4B619A0A41EE9C6B5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" - "OwnerKey" = "8:_9C7BC3B28FEF0D6A3C7DF01D18722E6C" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_999A55ECDBA24B00AEE2A5A207F8030D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_DD98189F70C149948FEBEDB7FFD024BB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_515A8CFB844E4B618CB13EC19A0FE75C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" - "OwnerKey" = "8:_818C90D1A56563131B63B1CA3CA576F3" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DD909E2A84A6A03F885157C6D9F706D1" - "OwnerKey" = "8:_4895DB05A2D70B7183EA59B67E777D81" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_25E58EB806A4EC8427C4EB8A218A5087" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DE408A593CAD828A7E5F24C6BDC31BE0" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_4C99FF29AB44757872B36197C8BF3C52" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DE408A593CAD828A7E5F24C6BDC31BE0" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DEC1BF0706D9BD9911592BB55DD70651" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DEC1BF0706D9BD9911592BB55DD70651" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_5BFFFF7FD7100CE916F389F8186B56E4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DEC1BF0706D9BD9911592BB55DD70651" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_EDDA39861F3723CCFEF74E28047A6DF9" + "OwnerKey" = "8:_88A93AF143EDA9404DBDD0F9AF0E3A8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DECDF56F984E473E92323CACE22A1C1C" + "MsmKey" = "8:_EDF50FE9EF1946E1922E6F86FA7842D5" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DF7BE6B17DB31AF84FE5CB648144B247" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "MsmKey" = "8:_EDFE6F57CA78D24F28D284DE3331ABF9" + "OwnerKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DF7BE6B17DB31AF84FE5CB648144B247" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" + "MsmKey" = "8:_EEC77B01CA74259E38B4BF930D62BBCA" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DF914A3690054B6CB9B7658ACB9DE4BF" + "MsmKey" = "8:_EEC77B01CA74259E38B4BF930D62BBCA" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EEC77B01CA74259E38B4BF930D62BBCA" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EEC77B01CA74259E38B4BF930D62BBCA" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EEC77B01CA74259E38B4BF930D62BBCA" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EFCC656AC74B43E495D1B9EAF292B675" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DFBDF74AFAE84C61AF344A7EAA435F27" + "MsmKey" = "8:_F05C2A6ABC3663BA3E2F3CF0A8A61AF0" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_F05C2A6ABC3663BA3E2F3CF0A8A61AF0" + "OwnerKey" = "8:_ABF50DEAD3F44E68B097345106E563D8" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_F05C2A6ABC3663BA3E2F3CF0A8A61AF0" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_F106C022A6904BC6BB197A83AB8DAAC8" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DFF757D14EB882CB71FA8D0C55AB8BF8" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_195464F81556BDF6BDAF089A424D04BD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DFF757D14EB882CB71FA8D0C55AB8BF8" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DFF757D14EB882CB71FA8D0C55AB8BF8" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_4E05FFBA65CF4791A30C1FA9F5B7C8C5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DFF757D14EB882CB71FA8D0C55AB8BF8" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_5B538E2AD9BE4EEE81436217036C9D66" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_DFF757D14EB882CB71FA8D0C55AB8BF8" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E0A90872657427483F053288CC41F7BF" - "OwnerKey" = "8:_D27991107EA14C1C8B4A246C7658161E" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_F5FE62D38D5C4D30A5276F398ACE2208" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E0A90872657427483F053288CC41F7BF" - "OwnerKey" = "8:_0ADF9758C9EA4C82A9116965FD5C824A" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_D8D464C1D0DB47DDB5EECB9B3B20D539" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E0DD91B6820043019824432F3CCAC570" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_EB98E04073DF4D0A81057B1F53EC6632" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E129F749CD8340D59FB77411E5B5DD52" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_DE2E2DBDCACB4DFFABB53403CF80C99E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_0295530C182F41228C836A2CB92468B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_95E95D512F7447DAA4C6FD50CE087AEA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_7A5B16731EEC4355B576D7DDFCA358BF" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_681A6EBA6A68461C95E7263C5490328E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_B31591AD75144D73B40DF05BAB25B5D6" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_7FF631853BCE4C7080E8E8CB1DBCDCC1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_0B60CEFE230E4633B1FD838B2E9E4D46" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_9EC593BE54DE4B388AAD3CA5F94275DD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_0327CD370EE34AA4A8DD54EBBF99AC9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_DA87F4E078FD438E9CBA27D5FD4B0543" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_AD652B25F4FB47219D9D111AD130AC03" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_0794C57E759F44AB8BCEA1A821EE1203" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_1C9958F853D5A78FDDAF7ECE8C7E37B9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_25E58EB806A4EC8427C4EB8A218A5087" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_745EED586EE63238193F683885BBD029" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_5B33C61F5CC73F6B67F7641FDCA19E32" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_8CA777642BA7AFFEAE6A555CEFA540D1" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_784ACDE198073C9AECF536BBDD06E2CA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_AFC97D4BF8CAF67F0E21BCC945873488" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_C3EDD553A32A0F38069B9AC4058185CA" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_C2C7C844CF816EEE05C94D4477A24455" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_002B35A47F685C337FD43749C4416446" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_963F4FE28111B47846C1A486F61E160E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_DC31A38AE46E7DFCEDB5951409403753" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "OwnerKey" = "8:_B1B6C7493CFDE652DA76CFFC346525E5" + "MsmKey" = "8:_F137BF9D1B77BF0B9B508E41BE202357" + "OwnerKey" = "8:_050B0C597A5045379389601790CC6923" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E1B0A32F6019411481452214B755CDD8" + "MsmKey" = "8:_F1D42F5FB7484B7D884F14677FCC7001" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E34DEC63EF5AECFFBF8716A00D7C2056" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_F1DD1333A875F0DB8A3FE15C1C30474C" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E34DEC63EF5AECFFBF8716A00D7C2056" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_F1DD1333A875F0DB8A3FE15C1C30474C" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E34DEC63EF5AECFFBF8716A00D7C2056" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_F1DD1333A875F0DB8A3FE15C1C30474C" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E34DEC63EF5AECFFBF8716A00D7C2056" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_F1E6E73509744DA98278CF51C40AE066" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E34DEC63EF5AECFFBF8716A00D7C2056" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_F2BF868F37FD4EBB9EEE93828F6B8B80" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E451AD3BC24D41ADB228D1701A132788" + "MsmKey" = "8:_F2D5764A578D47B7A5F39A4F078F6794" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E4C1953ECBAC459BA5CE532B297CB753" + "MsmKey" = "8:_F3DD6E43439845C5B435A9E9A9524E5B" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E54A5417B7A74CA0AFEBBB6AC3B2891C" + "MsmKey" = "8:_F44B9F499B54413980FDF3B3201DA9FC" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E5543BEE19D6404AAF21E98E481D50A3" + "MsmKey" = "8:_F46463168E28445994747470940851B5" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E5643FE0277AF29FFDF91A76ACDCA15D" - "OwnerKey" = "8:_AECE1BCC2F32BA06761A48F1FC930DB9" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E5643FE0277AF29FFDF91A76ACDCA15D" - "OwnerKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E6D30AB47617454F8622230FAC41B8D7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E742F99B1F0044E9ABB52FF2A6A893B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E74C8D77D5E37A69B6984831650003C7" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E74C8D77D5E37A69B6984831650003C7" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E74C8D77D5E37A69B6984831650003C7" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E74C8D77D5E37A69B6984831650003C7" - "OwnerKey" = "8:_B1849DE105A443F195D7510B391D0629" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E74C8D77D5E37A69B6984831650003C7" - "OwnerKey" = "8:_638ED98CAD46C3F510314D5BA18F5FFA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E74C8D77D5E37A69B6984831650003C7" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E76590BCB82D4ABF84904198C14023CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E767A68E6E9F41049C353260F89FEAF5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8309CE031A84E3BB0C7AEA48E019E22" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E93E4EB634E7453F8CD394FA9939AC72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E9B8002F9879403F994F719F640BFF20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA440389671E43118F16428DBAB67189" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA444D16D4344DC38DFD3112432AC09E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA48A68BB9E85EB5D21359CD934CDE34" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA48A68BB9E85EB5D21359CD934CDE34" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA48A68BB9E85EB5D21359CD934CDE34" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA7D4C3F94624D60B54A1DAC12893006" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB8BA7C21ABA40638C3816DE39B8B8AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC2A0C897C4A4C83924B8D98D10019ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED0DA281F66542919D2AC473AD74BA14" + "MsmKey" = "8:_F50034E84445435DAAB8F14F1FE1E03F" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_ED22E7D69A5A4C4DBF6D500300E53017" + "MsmKey" = "8:_F50DAAA0E2934C479ECE2D8802E610D0" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_ED4EB4B6E478479B9879EEA7F238D5E0" + "MsmKey" = "8:_F5FE62D38D5C4D30A5276F398ACE2208" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_EDA76A729DD4307C7627100FBBAE26ED" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDA76A729DD4307C7627100FBBAE26ED" - "OwnerKey" = "8:_7DA9550944E242C8B9D670E9FE8EE460" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDA76A729DD4307C7627100FBBAE26ED" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDA76A729DD4307C7627100FBBAE26ED" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDA76A729DD4307C7627100FBBAE26ED" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDA76A729DD4307C7627100FBBAE26ED" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDA76A729DD4307C7627100FBBAE26ED" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDA76A729DD4307C7627100FBBAE26ED" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDA76A729DD4307C7627100FBBAE26ED" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE657F070AC54DDCBA5CD56C53F3FFDC" + "MsmKey" = "8:_F86D3CBF0B1F43668BF213D00BF2E7FF" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" - "OwnerKey" = "8:_29CB956579F014CB39FEC953CA2F0C41" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" - "OwnerKey" = "8:_75FE1351602A4F8E85CB6F9A14FCFF09" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" - "OwnerKey" = "8:_FF838842077D44EAA2A6348E18D08E79" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" - "OwnerKey" = "8:_BE139D97F8514758AF302D7BD7AED16D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" - "OwnerKey" = "8:_917CF3652B6247629F893344D40AB128" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" - "OwnerKey" = "8:_DC1DA13D29294C5A9005F83D465B66CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" - "OwnerKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" + "MsmKey" = "8:_F8B53535DABD4E7D5E5951C921AC682A" + "OwnerKey" = "8:_89C50D3BE2F9490EBB5D778B96C32C9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" - "OwnerKey" = "8:_D75B6A6A5545683C518ED86EB7E8F781" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7BCAEF0FCC461FB03DB8DF401DCA94" - "OwnerKey" = "8:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE89A54BD17940D98397488D356F8725" + "MsmKey" = "8:_F97984886F724C73B3B2743E9274CF5D" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_EEC2D01F239C4AFAA2CA4422658DF52F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_2795AE63D8FD24F65235AA36541F914C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_5D01B927B9EF45109391F9A863CC0564" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_67B28C0C25A549578A5E328EA971DE36" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_DC5BA24737434CFC93737655BE821203" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_1947F3829A764DD2A928A23101DE2206" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_C917E933CF5640B7BA560B4FB8121B8D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_0A912963B5544791B5D25A6A7592B988" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_80443D2C922030B6CD68CCA745F0E5B1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_CF7A5CD88A7F820BF2C34799F7AE6D9C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_A881EE6EB47C82273E9DF4FF3FF06A7A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_F9D45EB45753FAD80DFD1C6F7ADF3844" + "OwnerKey" = "8:_79B48096B03304C26F26ED14E79E3EA8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_EF1D2C6852E2496CB6BB1C17E585B91B" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_F9D45EB45753FAD80DFD1C6F7ADF3844" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_EF94E2DA6C72DA9C63B35DDB55F7A644" - "OwnerKey" = "8:_32BC4BF42CC040299C37E6C214492928" + "MsmKey" = "8:_F9D45EB45753FAD80DFD1C6F7ADF3844" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_EF94E2DA6C72DA9C63B35DDB55F7A644" - "OwnerKey" = "8:_78718FB568EC5F0FBD61D8EA7614AC2C" + "MsmKey" = "8:_F9D45EB45753FAD80DFD1C6F7ADF3844" + "OwnerKey" = "8:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F06D87FB58FA42DAB9F564332CE2105D" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_F9D45EB45753FAD80DFD1C6F7ADF3844" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F0A36D4461B449338F00BEACE026387F" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_FA4CE78BBACB594C45D2BC3C566134D0" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F0EA57735BF3449AB63083CAF9B9B3B9" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_FA4CE78BBACB594C45D2BC3C566134D0" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F1232BDC1C584F518602C340CC6D9B3B" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_FA4CE78BBACB594C45D2BC3C566134D0" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F123BCB33FAF471CA8A39D6E046F8F8A" + "MsmKey" = "8:_FA592753CDE042848A569F999BFFBD44" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F15129EDC4B8463491B8B0C0C7DC2AE4" + "MsmKey" = "8:_FA75660EFEB348B7AC175C24D774F176" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F1D679BED009170305B2519CD78CA300" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1D679BED009170305B2519CD78CA300" - "OwnerKey" = "8:_C739986D38D4428AA8E16DD93CA8F2C8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1D679BED009170305B2519CD78CA300" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1D679BED009170305B2519CD78CA300" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1D679BED009170305B2519CD78CA300" - "OwnerKey" = "8:_243FEEBC941A41DD9C5F736248AFD819" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1D679BED009170305B2519CD78CA300" - "OwnerKey" = "8:_80FAF08BE91DC1EC96DC613154D44F7E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F209B5DB23FDBB924E78243E39A49B2D" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F209B5DB23FDBB924E78243E39A49B2D" - "OwnerKey" = "8:_6CAF4782BEEB4150B37C0293B79F0069" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F209B5DB23FDBB924E78243E39A49B2D" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F209B5DB23FDBB924E78243E39A49B2D" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F209B5DB23FDBB924E78243E39A49B2D" - "OwnerKey" = "8:_C55A3B1DD3CF204DFEA82F4F0698C90F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F234093989D94177BDA1899CB3899E6B" + "MsmKey" = "8:_FACC7D8D886249829543B076EC2FD9BA" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F2EF36872A68BB7BF9299928E8570A54" - "OwnerKey" = "8:_713C184BE2CA45D0BCA6495686EC6078" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F2EF36872A68BB7BF9299928E8570A54" - "OwnerKey" = "8:_C46526CAB5A24576884D6EEAAB340FDE" + "MsmKey" = "8:_FB2362D3B56C02E660BBD18DFDAD9323" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F2EF36872A68BB7BF9299928E8570A54" - "OwnerKey" = "8:_DE408A593CAD828A7E5F24C6BDC31BE0" + "MsmKey" = "8:_FB2362D3B56C02E660BBD18DFDAD9323" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F2F97D454D8D47918C9652A80088AC3C" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_FB2362D3B56C02E660BBD18DFDAD9323" + "OwnerKey" = "8:_F46463168E28445994747470940851B5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F2F97D454D8D47918C9652A80088AC3C" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_FB2362D3B56C02E660BBD18DFDAD9323" + "OwnerKey" = "8:_9AF4DF764E3D402FA7B373767289455C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F2F97D454D8D47918C9652A80088AC3C" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_FB2362D3B56C02E660BBD18DFDAD9323" + "OwnerKey" = "8:_58C396CAD94644E493315C2801EC4AF5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F35677D8BAE0440BAB6251CF38C56E56" + "MsmKey" = "8:_FB5846E10AC44AF497982FCAE901BDE7" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F3FBFC9F0B8845BF9ABA6CDF70517733" + "MsmKey" = "8:_FBCDC555A20E406DB6428A2BCFCD948C" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F4E0452827F743E4917D6E9D8C14CF82" + "MsmKey" = "8:_FC1B3053EE004D9CA842FE7ACAB59109" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F62AEFC871D44831804BCD4DF25C23F0" + "MsmKey" = "8:_FC885A1AEC504F53914D5FCC259F5C15" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" + "MsmKey" = "8:_FD56A51A1C3951F7EECA29D42148DB6D" + "OwnerKey" = "8:_8CF03875B4957823DB3256163B0305BB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" + "MsmKey" = "8:_FD56A51A1C3951F7EECA29D42148DB6D" + "OwnerKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_FD863E6FF01F2BA099CEAB21C5ACF521" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_FD863E6FF01F2BA099CEAB21C5ACF521" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F682B2F4C68FE65321CE4CD6736B661B" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_FD863E6FF01F2BA099CEAB21C5ACF521" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F6BAAF5364A4477F8AB5AC0EC2E90C05" + "MsmKey" = "8:_FDF8C7CAC2674036AFE74F2FD3B5D0E0" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F74B633FFD13477CB23319970F4DA9B6" + "MsmKey" = "8:_FE8069F25C7542899AA4D3DA4F912B1C" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F74FD6B90AD24FF6B7FFEEDBAD83CAC6" + "MsmKey" = "8:_FEEDC4F58B6148F79B34BCD14DEF1B1B" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F7DCFBBBD2303C93730C794C86A43580" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F7DCFBBBD2303C93730C794C86A43580" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F7DCFBBBD2303C93730C794C86A43580" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F81ABC3C293841A7AA5921A1286B040B" + "MsmKey" = "8:_FF423F0AB3D042528B09925A0C152C0B" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F830479CC5094EACA6A03A8E3D7B4851" + "MsmKey" = "8:_FFBB9EC9AF5B4F1B87DDA235FB77CCDB" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" - "OwnerKey" = "8:_D9930CF9099C162CBFE610861A2D1E71" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" - "OwnerKey" = "8:_8DA7C6C81DDC4F94A07D257BE53DF8B3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" - "OwnerKey" = "8:_0ADF9758C9EA4C82A9116965FD5C824A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" - "OwnerKey" = "8:_B1849DE105A443F195D7510B391D0629" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" - "OwnerKey" = "8:_638ED98CAD46C3F510314D5BA18F5FFA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" - "OwnerKey" = "8:_9369A854E29045B69C5DBCF963B99BF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" - "OwnerKey" = "8:_73A58D0939B541DFB73116EDFD2DF065" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_9A524C86B3B34446AC4F83D726A76918" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_07914A2459CA4EC0B9AB9FB4588055B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" - "OwnerKey" = "8:_1E5B81CCC8D0479EB4E02A4D51586F66" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_F46463168E28445994747470940851B5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" - "OwnerKey" = "8:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_777D66705D8B49A0AA649B76F14CDC63" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" - "OwnerKey" = "8:_D27991107EA14C1C8B4A246C7658161E" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_9AF4DF764E3D402FA7B373767289455C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" - "OwnerKey" = "8:_99BC522B469D655DCEEF33E730328007" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_58C396CAD94644E493315C2801EC4AF5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_5D4ACCBB99CE4379BFF48836F57C9CDB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F990AF8668E94BD9BE4862F58E0BD0B7" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_C630F7E8EA4840BAB1B2559D71483F8E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_13076694956A276FD28F4D3FA60FA3B9" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_B5359DB2717C45BB8ED554A6D0A6C361" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_3CFD50619890440D8E99A14272FA50D8" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_D811630E15194F8E96C950896FE98C7B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_EEC2D01F239C4AFAA2CA4422658DF52F" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_412C7C7C4A634DEDB9CFACD8617FDEE8" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_4727FDB58AE347C2BBB045C8D3422B9C" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_B41CF285191B458BB15E99523C5B2A40" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_E451AD3BC24D41ADB228D1701A132788" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_62667E51DDAC4C82A79030A542EB7509" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_FB8CCE47C2C24FC78F44CE8816A25D4F" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_94FAD8EAA57C4DB68ED601C6F5F7B54C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_709E7345734C49C785344FF2FEB5F15C" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_CF64DAC62FED43EE9B6F411BE5FBF065" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_8FB8AFCDABF8452F83DE8869F746A7BC" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_AAD83CEDDDC54AAFB0655F23A6225024" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_991EEF88AC3F465395698A49A450AE86" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_73D3FD7993624E07B5E561B11755AC2B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_4086BBE9D491420D9D58094A754D33A6" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_CE6D89188B1C43438BB2A2F8F3334887" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_5B31A4E8F126425BA1A42D99C31B8454" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_5C837F67EF074C468C3D6F326FB979E2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_7A28B079B11A4E5DAC6934D4636D9DF1" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_C3B7907507234BC19C2B0B958AAAC5B7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_2AED01C7EC6542DBA02321974108B0A3" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_9818F96B07084AA4B619A0A41EE9C6B5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_2F2E12B5737144529E85E63A1D63C778" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_999A55ECDBA24B00AEE2A5A207F8030D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_289443165ADD4A66B8F54919CCAC19CA" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_DD98189F70C149948FEBEDB7FFD024BB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_2DE803115352471BA7B719E7A0F4F047" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_515A8CFB844E4B618CB13EC19A0FE75C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_17760E146DF74573A3BDC64BB120A84A" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_01E539312CCF4E9CA4A58A1752403D51" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_FFDA339F51CF46BCBAFA4EB8FC160DE7" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_65A667BC789D01A72E116514081DB3F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_28F64806236246FD8929239A675BD1B7" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_89C50D3BE2F9490EBB5D778B96C32C9E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_51CCC9AC96B14C59B08BCD4ABF521989" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_E1CCBF6B3FDBC09AF00783496814045C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_219960535F374502A9C52CAD67D578FA" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_EA379DBB2DF5E7F187B81469EDC10741" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_EB8BA7C21ABA40638C3816DE39B8B8AA" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_A95F4E8A504CA6B85FA53C01B8AA56B5" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_82A6CF9F4FD84C679D36AEEDBB1FCE86" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_CB6C3806A5B43EEBDB09EB86EF760090" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_C2DA7AAF1C68439CA95DEDC6F6CC83A4" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_EDFE6F57CA78D24F28D284DE3331ABF9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_C910CACFE76849F3A159B9A360FB9AC0" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_1621CD8AC45709FF928DE3ED82B24D00" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_C84258B5F9CB4858B84F83F26C0CA7FB" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_EDCF4173C63D6E3DBE3EBD16AB57A3BD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_E6D30AB47617454F8622230FAC41B8D7" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_A7C7E66B124BB4B955D0308A3B882532" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_40B729EB21D94AA6BB6363FC56BE6BDB" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_4AA45544318FAE6B23403F8280F2F677" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_9DCC3259FB4363AF666EE00687ABAC68" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_EA8D27EC4FC7094D6938CB2A9756B429" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_4E68D8E505060343C9C98DD4F77B2A9C" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_E17EB625D338F9B7C8CD609BA23059D2" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_EDA76A729DD4307C7627100FBBAE26ED" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_63371D0BAD234D5F7696EA820393E3B0" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_19DAFC5E96736BDA49E1EBC7F6F773F0" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_EC7AF235DA19AF381962502B470A8A30" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_70ED8AD69F00771AC685626BF42151F9" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_427AE465F055A535566FA1FBCEE3948A" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_EF015C3FA17EA3D2FE205B66AD2A84A3" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_E206E7CC8B4944C8842AA2E66444D42D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_5833E4D0F48E946AFFDACE1B745CF3F2" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_6E858C1B43B264FBD4E33E5728B8DEC4" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_2A4578BF545FCDD4D344601CF0C7C7ED" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_935D659A1E629D9E893364FF0C941167" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_98D58BF729725C45B60DD0BFF59397B7" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_8CF03875B4957823DB3256163B0305BB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_7EC2005B277E210206C82E36034DB2AF" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_FD56A51A1C3951F7EECA29D42148DB6D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_29AD8DC42D931B91562FEE551A1A0D5F" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_2C86D93FF6F2A8D550A353E689A42D66" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_6D42945D601C7EA2D2C4D4BA759811D1" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_815241ADB1F91E73543454427C08153B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_64563FACCCB9F211605BD1F9E5E8CB12" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_2297D78D3E90455E8F53C4BE8C5E0F94" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_93A9D43033340E6AC9CD6CB947BDC85C" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_608B8B5F90364C4BB202C91CEB424C29" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_636D2B8A50DD0086FBFCBE22585C8272" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_E73BF78D3FB8428D9E7155229D73455E" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_C88BBE41CBBB168C9AA5242A9BCD5275" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_697B50CE235447299497D237412C4DCD" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_2033A1DA8135A1EC6C8F9934F70B5276" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_4BE84EA27B5340128C46B9FF78B2828B" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_BBC69E729BE7F78A4C96530590B04EC4" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_84E6645587CD46C985603D661E800251" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_4CB1E56C3B127AC23CED7AB9265058C5" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_F97984886F724C73B3B2743E9274CF5D" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_24EED38216634C0AFCFA545072D23596" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_A373F853496F48BCB73085CEC13477DE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_0A7B97C8C82834A6324FCC78FA829BD0" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_E2FDCF13274F4F67A89C0CD8661BAD11" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_C4393C50D0B918C6CE9057D84DF2C79E" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_E0AA6902979947A58079211F8F730078" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_61D9ECBCAA771C3A8BAE2222F36AD38F" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_ED6EF431B71B461098C1E38F9513C0A3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_7D8FCF85D594C05AD593D035B7C79AC9" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_50306E8DAC38471AAB28C2754B9E6124" "MsmSig" = "8:_UNDEFINED" } - "Entry" + } + "Configurations" + { + "Debug" { - "MsmKey" = "8:_FA40DA5BCA1319A838E77639535E5A9C" - "OwnerKey" = "8:_C6F0A5B6E993A45AA3484AB9972E006C" - "MsmSig" = "8:_UNDEFINED" + "DisplayName" = "8:Debug" + "IsDebugOnly" = "11:TRUE" + "IsReleaseOnly" = "11:FALSE" + "OutputFilename" = "8:Debug\\Setup1.msi" + "PackageFilesAs" = "3:2" + "PackageFileSize" = "3:-2147483648" + "CabType" = "3:1" + "Compression" = "3:2" + "SignOutput" = "11:FALSE" + "CertificateFile" = "8:" + "PrivateKeyFile" = "8:" + "TimeStampServer" = "8:" + "InstallerBootstrapper" = "3:2" } - "Entry" + "Release" { - "MsmKey" = "8:_FB8CCE47C2C24FC78F44CE8816A25D4F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" + "DisplayName" = "8:Release" + "IsDebugOnly" = "11:FALSE" + "IsReleaseOnly" = "11:TRUE" + "OutputFilename" = "8:Release\\Setup1.msi" + "PackageFilesAs" = "3:2" + "PackageFileSize" = "3:-2147483648" + "CabType" = "3:1" + "Compression" = "3:2" + "SignOutput" = "11:FALSE" + "CertificateFile" = "8:" + "PrivateKeyFile" = "8:" + "TimeStampServer" = "8:" + "InstallerBootstrapper" = "3:2" + "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" + { + "Enabled" = "11:TRUE" + "PromptEnabled" = "11:TRUE" + "PrerequisitesLocation" = "2:1" + "Url" = "8:" + "ComponentsUrl" = "8:" + "Items" + { + "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.NetCore.DesktopRuntime.9.0.x64" + { + "Name" = "8:.NET 데스크톱 런타임 9.0.17 (x64)" + "ProductCode" = "8:Microsoft.NetCore.DesktopRuntime.9.0.x64" + } + } + } } - "Entry" + } + "Deployable" + { + "CustomAction" { - "MsmKey" = "8:_FBBEF73DA7CF42B195372A8C11C6117C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" } - "Entry" + "DefaultFeature" { - "MsmKey" = "8:_FC009E9A5A3440DABEEA87E31255CB3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" + "Name" = "8:DefaultFeature" + "Title" = "8:" + "Description" = "8:" } - "Entry" + "ExternalPersistence" { - "MsmKey" = "8:_FC262487CAE543089CB587C8166C581E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" + "LaunchCondition" + { + "{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_6D94487E69CA4E6DB15726769427C128" + { + "Name" = "8:.NET Framework" + "Message" = "8:[VSDNETMSG]" + "FrameworkVersion" = "8:.NETFramework,Version=v4.7.2" + "AllowLaterVersions" = "11:FALSE" + "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=863262" + } + } } - "Entry" + "File" { - "MsmKey" = "8:_FC47BDCEDA45473ABC719B085B8EFFD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC53FBAE9EC941CF9F74D14A1A911331" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC95A4D5ECA249D087B8C8927A983254" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" - "OwnerKey" = "8:_779089C4535D1F4BE27BCFA5629CC6B4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" - "OwnerKey" = "8:_A713D419BA6D49E5878EB49FED28B813" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" - "OwnerKey" = "8:_AED7E1511C6E47C4A7750F30954E4A84" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" - "OwnerKey" = "8:_D10BDDA5EB364256BAAC5CB1AF12B03B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" - "OwnerKey" = "8:_3641F13EEE6D40418EBD3ABED7007E10" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" - "OwnerKey" = "8:_E9B8002F9879403F994F719F640BFF20" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" - "OwnerKey" = "8:_E34DEC63EF5AECFFBF8716A00D7C2056" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" - "OwnerKey" = "8:_1E31CB5CB98AC6D1CA22D47553042578" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" - "OwnerKey" = "8:_2903BC31F1FC409428A55014360EA7D9" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC9F660FC0B30011AC468ECE151178B4" - "OwnerKey" = "8:_BCCA251C9F4088E35094B8C05D7588BD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FD80D55FA9E54BA1BB5D21F933BDB1C1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FD88DABE9FFA404C83E33EB0E8A1C0FF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FDB1B12366FA4BA49CA83639303BB836" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FF01DD905B5046A4BD5F48DE0E98F609" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FF1CA39B5F0F4A5784B3F060A1AEE9FD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FF2E89ADEACA488693DC1A83E1DDA15D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FF32F6EB6C9C4DB6B530CB8C4A5A5282" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FF5D01091703492380CB3F05D0985852" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FF838842077D44EAA2A6348E18D08E79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FF955E7B7BEB4C2CBB3C9F9D077CDD5B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFDA339F51CF46BCBAFA4EB8FC160DE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6EC3A0F1473149B188D48C38F48FF966" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_0ADF9758C9EA4C82A9116965FD5C824A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_7169540326D944AAAA2870E3282DDABB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_51F415BDB36E45D0A4BD1F1EE34F9523" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_71DBD969B0CF4DB2BE1F02AE13E5CBF1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_92684EA6B6C848E196808226672D7230" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C2F04854BE644AB3B053F8E4AA21C8B5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9CB339FE4F29483BBFC63B8DAA58487C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B9AEDD2931244B6494949D55104210BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C5B0AE74BFAE45BA893232F4A15B6C27" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_7DA9550944E242C8B9D670E9FE8EE460" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_EC2A0C897C4A4C83924B8D98D10019ED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_71A6F30AD21A45D5BFC23EC8EF3B493E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B6288F8D68A9416A92DC90E280B06EA2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_87CB044B3B874008B34A0806C2A0CEB4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_FD88DABE9FFA404C83E33EB0E8A1C0FF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_88E77811AF3F4C4AB4AE55BAD8A215CD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_550899349AF445AFB2CA10B0FBD96D87" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_81C28C65CDD545B49B276CEC8FAA9C50" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6979A6B680CB47C7A69BE7860AF298F6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_BE5D2C19D8FE4FA1BDF8F4B535872332" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D27FF6909BB24D13BCEE5E0AB0B89913" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_2285A247283A47AB9A1A13A63208315D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D3B9100D444743C5A5B2BEADE3C79799" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_1393BDC59A6B4C81B84D5C2C618156EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C9119A99605F402ABE71C62A7381323B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_3B678EA0E9FA4D20B7D90D75DCAF300C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_605BE8A0427948D6B90C492E1BD29A76" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_857F5B9F107D4EE0A084B7EFFF52D005" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_AD0702E6A985495B973E198A50FD62EB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_73A58D0939B541DFB73116EDFD2DF065" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F6BAAF5364A4477F8AB5AC0EC2E90C05" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_0021E403FEFF425DA798B9B71DD96DD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_303CFCE7B81869E4DD9974889C4F4719" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_1EFB3A511A9240E98D2CBCEB471B206D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_46257171A0414AD79483B9977E2FF868" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B1BBFEBF17944DFE9CA4380F36886A1E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_8CED62AA275E4E2790356B9C26CE8DED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D27991107EA14C1C8B4A246C7658161E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_12A22C17A5EFBF5FAC6311A39452F8BA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_7BB2F2553D928EC95A45CFC8C2047585" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_CB1F155372950F93B93A4149AD30F430" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_0A34BB0D99A9F03D4B6C149150AE4BD7" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_3F8E8241EDFCEA59F73D5CF96B6C5177" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_38F70C23CF919177A4ED34A340D64FFE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_83C9DE3A861D9F898B96B6FCAC6B35DB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C4EB69ABB739EAA5F7A83AB70C81F466" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_CC5DE103F0B1626462D98943314907C9" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_0AD512AB3459ED6F4F847D545A537BB3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_0CC47E8DADE9332F8B0F53C5B4AE1952" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_25B99998ED179B2DCB227ABF4BE00662" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_3E941E8EA87F158B58927EE85FAC5BD4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9B37A3A3FB8BCE35DCD0CC69E3F142F1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_4AA4654633338AD82BCBCF22F9E71E03" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F123BCB33FAF471CA8A39D6E046F8F8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_2091BD7CF410472990D110B9A62F377F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D831A6BFB38CDEE31BFE4F9EFAEEBDDC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D27AEA7FE3F328B5BB4B8A02ADDE13CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_AECE1BCC2F32BA06761A48F1FC930DB9" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_E5643FE0277AF29FFDF91A76ACDCA15D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_85B399791CB74ADD9F8C48730A9028FB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_83F0C7A493D8435EAB296C73FA970749" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_EF94E2DA6C72DA9C63B35DDB55F7A644" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_57EAA6DC10DDCE02971C5049BFAF54A3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_368AA1A6224844B6B09059C68A46DBE6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9D74193656DE40FA843C2241CAC84A49" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9A2097DF8F4A4217A21041FB7728B506" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_4D439AE642BD42B88299558FBF3E2817" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_96F7E032C1DE4C7EBB9AE5F67ADE31BD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_513F47F07D3B44E7BCCD46CFDC2A729A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_8AEA8B4F06244E8EB4329395A8C2E376" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F35677D8BAE0440BAB6251CF38C56E56" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C04A80B6E9D54E718CAF41CA552A46E3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_1D1ED3F0D711477E9FF4DFF590CEAE8B" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\SetupProject.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\SetupProject.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.NetCore.DesktopRuntime.9.0.x64" - { - "Name" = "8:.NET 데스크톱 런타임 9.0.17 (x64)" - "ProductCode" = "8:Microsoft.NetCore.DesktopRuntime.9.0.x64" - } - } - } - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - "{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_41E308F3CC634266A8900AA66044950C" - { - "Name" = "8:.NET Framework" - "Message" = "8:[VSDNETMSG]" - "FrameworkVersion" = "8:.NETFramework,Version=v4.7.2" - "AllowLaterVersions" = "11:FALSE" - "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=863262" - } - } - } - "File" - { - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0021E403FEFF425DA798B9B71DD96DD1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationCore, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" - "ScatterAssemblies" - { - "_0021E403FEFF425DA798B9B71DD96DD1" - { - "Name" = "8:PresentationCore.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\PresentationCore.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_002B35A47F685C337FD43749C4416446" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Requests, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_002B35A47F685C337FD43749C4416446" - { - "Name" = "8:System.Net.Requests.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Requests.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0067AD8DE1F64BC0944BD54785646582" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Database.ini" - "TargetName" = "8:Database.ini" - "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_00B352615C3E46EF86D299B4F122F3C6" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_00B352615C3E46EF86D299B4F122F3C6" - { - "Name" = "8:UIAutomationClientSideProviders.resources.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ru\\UIAutomationClientSideProviders.resources.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_F050AFEC75CD404984C24AA71672DBCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_012BD970C28643B1867A45BABD5EEA80" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_012BD970C28643B1867A45BABD5EEA80" - { - "Name" = "8:PresentationCore.resources.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hans\\PresentationCore.resources.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_A526A21B472242C9B6F4662E9D05A435" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_01D43FE872054FCF8A67E90ED85E1CC4" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Formats.Asn1, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_01D43FE872054FCF8A67E90ED85E1CC4" - { - "Name" = "8:System.Formats.Asn1.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Formats.Asn1.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_01E9CC4476A64B8C82EB0BE022CF047E" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Resources.Writer, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_01E9CC4476A64B8C82EB0BE022CF047E" - { - "Name" = "8:System.Resources.Writer.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Resources.Writer.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0205F5D1886848139710911DD96B405B" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Metadata, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0205F5D1886848139710911DD96B405B" - { - "Name" = "8:System.Reflection.Metadata.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Reflection.Metadata.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_02848728AD0D442B974E23D647DB20B8" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression.ZipFile, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_02848728AD0D442B974E23D647DB20B8" - { - "Name" = "8:System.IO.Compression.ZipFile.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.Compression.ZipFile.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_04A14015937743D8AA55044D7126131B" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Formats.Tar, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_04A14015937743D8AA55044D7126131B" - { - "Name" = "8:System.Formats.Tar.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Formats.Tar.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0537D874F7DD4D6D9C21CF15B8A83A3B" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0537D874F7DD4D6D9C21CF15B8A83A3B" - { - "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\it\\System.Windows.Controls.Ribbon.resources.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_33866903D6804194A4096F8D1E34C9F3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_056D427A7CA44E21BAEF25AE453EEC58" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_056D427A7CA44E21BAEF25AE453EEC58" - { - "Name" = "8:System.Windows.Input.Manipulations.resources.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pl\\System.Windows.Input.Manipulations.resources.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_33ECECC7E762456A9E89108B3C562998" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_076E4805821E493BB030314D22834904" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_076E4805821E493BB030314D22834904" - { - "Name" = "8:ReachFramework.resources.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hant\\ReachFramework.resources.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_FFD6EAF1B3444345AC6B6F35CA58BF38" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0774B1ED0EA5436B9CAE238B6765781B" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\android-x86\\native\\libSystem.IO.Ports.Native.so" - "TargetName" = "8:libSystem.IO.Ports.Native.so" - "Tag" = "8:" - "Folder" = "8:_3400B3E8DB314CEC99D9A824542C7EEA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0780B22F54AB492BB65CAEE79E2A59BA" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.DispatchProxy, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0780B22F54AB492BB65CAEE79E2A59BA" - { - "Name" = "8:System.Reflection.DispatchProxy.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Reflection.DispatchProxy.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_07828112E1204A3FA5A2CCAE0A8C82CA" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_07828112E1204A3FA5A2CCAE0A8C82CA" - { - "Name" = "8:System.Xaml.resources.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pl\\System.Xaml.resources.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_33ECECC7E762456A9E89108B3C562998" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_079009E7E5124031B6204AAC7FF67A9A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Transactions.Local, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_079009E7E5124031B6204AAC7FF67A9A" - { - "Name" = "8:System.Transactions.Local.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Transactions.Local.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_07D73BC9426549209FE1191ACC01CB3C" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Housing.deps.json" - "TargetName" = "8:Housing.deps.json" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_07F1036CA88B414C817593A38D6D3A6D" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\mscorrc.dll" - "TargetName" = "8:mscorrc.dll" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_087BC2E0C1D042AE961F35C0EE73A5EE" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_087BC2E0C1D042AE961F35C0EE73A5EE" - { - "Name" = "8:UIAutomationClient.resources.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\tr\\UIAutomationClient.resources.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_F3F3E806FBD0440F983B77DA02BEF5A8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_08DBB2137E4945EBB08B07CF58EB154F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_08DBB2137E4945EBB08B07CF58EB154F" - { - "Name" = "8:System.Windows.Input.Manipulations.resources.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ko\\System.Windows.Input.Manipulations.resources.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_CB3BE22960A44DC39C9AA84ABE16E22A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_08F2AD45918FE7A8AD9BEDB57716F237" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.AccessControl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_08F2AD45918FE7A8AD9BEDB57716F237" - { - "Name" = "8:System.IO.FileSystem.AccessControl.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.FileSystem.AccessControl.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0912E1C1C1F24DDCA531C6864D1665A8" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.CSharp, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0912E1C1C1F24DDCA531C6864D1665A8" - { - "Name" = "8:Microsoft.CSharp.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.CSharp.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0995FB7CDDA448B7A0FF01E8DE947294" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\android-x64\\native\\libSystem.IO.Ports.Native.so" - "TargetName" = "8:libSystem.IO.Ports.Native.so" - "Tag" = "8:" - "Folder" = "8:_4836071584BB4609A7D86E3A5CC8A382" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0A34BB0D99A9F03D4B6C149150AE4BD7" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Threading.Overlapped, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0A34BB0D99A9F03D4B6C149150AE4BD7" - { - "Name" = "8:System.Threading.Overlapped.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Threading.Overlapped.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0A548EEEC318444B898BF80F22CEBA64" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0A548EEEC318444B898BF80F22CEBA64" - { - "Name" = "8:ReachFramework.resources.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ja\\ReachFramework.resources.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_98051D1C933E479E8031502C52F83D92" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0A7B97C8C82834A6324FCC78FA829BD0" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0A7B97C8C82834A6324FCC78FA829BD0" - { - "Name" = "8:System.Runtime.InteropServices.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.InteropServices.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0A912963B5544791B5D25A6A7592B988" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.TypeConverter, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0A912963B5544791B5D25A6A7592B988" - { - "Name" = "8:System.ComponentModel.TypeConverter.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.ComponentModel.TypeConverter.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0AD2B80BD2AC492DB97EE4C5ED1BF5F8" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Logging.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0AD2B80BD2AC492DB97EE4C5ED1BF5F8" - { - "Name" = "8:Microsoft.Extensions.Logging.Abstractions.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.Extensions.Logging.Abstractions.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0AD512AB3459ED6F4F847D545A537BB3" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Net.Sockets, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0AD512AB3459ED6F4F847D545A537BB3" - { - "Name" = "8:System.Net.Sockets.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Sockets.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0ADF9758C9EA4C82A9116965FD5C824A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Housing, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0ADF9758C9EA4C82A9116965FD5C824A" - { - "Name" = "8:Housing.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Housing.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0AFEDDD7596547F9B9826E7827042C1F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0AFEDDD7596547F9B9826E7827042C1F" - { - "Name" = "8:PresentationUI.resources.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\fr\\PresentationUI.resources.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0D6BB22DBA6348629B76C0E2123EBBFD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0B251358B54D7DCB9614FAA7B02B6091" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.NetworkInformation, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0B251358B54D7DCB9614FAA7B02B6091" - { - "Name" = "8:System.Net.NetworkInformation.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.NetworkInformation.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0B2BAA3A5E604087AF901AAAD0289AD7" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Csp, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0B2BAA3A5E604087AF901AAAD0289AD7" - { - "Name" = "8:System.Security.Cryptography.Csp.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.Cryptography.Csp.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0B60CEFE230E4633B1FD838B2E9E4D46" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_002D58F05FFA46FDBDB54483374D69B2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Quic, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_0B60CEFE230E4633B1FD838B2E9E4D46" + "_002D58F05FFA46FDBDB54483374D69B2" { - "Name" = "8:System.Net.Quic.dll" + "Name" = "8:System.Security.Cryptography.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.Quic.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.Cryptography.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -23202,302 +21213,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0BA12C6A7503EDB0C827A7D2373B43FE" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0BA12C6A7503EDB0C827A7D2373B43FE" - { - "Name" = "8:System.IO.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0BCB59AFC8CE47079630A8051FEE4259" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_00DABFD98C754A759E5ABFB211B5C249" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_0BCB59AFC8CE47079630A8051FEE4259" + "_00DABFD98C754A759E5ABFB211B5C249" { "Name" = "8:WindowsBase.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pl\\WindowsBase.resources.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_33ECECC7E762456A9E89108B3C562998" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0C3E345C6D6041778606E682C8EF1BE1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0C3E345C6D6041778606E682C8EF1BE1" - { - "Name" = "8:System.Windows.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Windows.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0CA892179765431AACCDA9CC9A5A718F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0CA892179765431AACCDA9CC9A5A718F" - { - "Name" = "8:System.Net.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0CC47E8DADE9332F8B0F53C5B4AE1952" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0CC47E8DADE9332F8B0F53C5B4AE1952" - { - "Name" = "8:System.Net.Http.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Http.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0CD3F544A0F1D9D27CC36C5B7338C984" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Csp, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0CD3F544A0F1D9D27CC36C5B7338C984" - { - "Name" = "8:System.Security.Cryptography.Csp.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Cryptography.Csp.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0D402C75C4105E49FA08F1F21522121B" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ObjectModel, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0D402C75C4105E49FA08F1F21522121B" - { - "Name" = "8:System.ObjectModel.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ObjectModel.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0D7A68671100C8E976D700977069A1AD" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Dynamic.Runtime, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0D7A68671100C8E976D700977069A1AD" - { - "Name" = "8:System.Dynamic.Runtime.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Dynamic.Runtime.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0E4CE33347A3FAB993941A4812B2F6B6" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Cng, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0E4CE33347A3FAB993941A4812B2F6B6" - { - "Name" = "8:System.Security.Cryptography.Cng.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Cryptography.Cng.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0E68B1E82AAD49399267ACAB562EC6F5" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.AccessControl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0E68B1E82AAD49399267ACAB562EC6F5" - { - "Name" = "8:System.Security.AccessControl.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.AccessControl.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\tr\\WindowsBase.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_D14333D71D9548B993E7562D7B181D97" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -23512,23 +21244,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0F6D284DDECB11F82AD5814134FEAE6D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_01838AD5211DB87EAF6539800EB4D08C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XDocument, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Sockets, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_0F6D284DDECB11F82AD5814134FEAE6D" + "_01838AD5211DB87EAF6539800EB4D08C" { - "Name" = "8:System.Xml.XDocument.dll" + "Name" = "8:System.Net.Sockets.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Xml.XDocument.dll" + "SourcePath" = "8:System.Net.Sockets.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -23543,116 +21275,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0FDF33C2BE754393864E64027DB22770" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.SqlServer.Server, Version=1.0.0.0, Culture=neutral, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_0FDF33C2BE754393864E64027DB22770" - { - "Name" = "8:Microsoft.SqlServer.Server.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.SqlServer.Server.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_10A8E89B79204217B9C91D25AB893E32" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_10A8E89B79204217B9C91D25AB893E32" - { - "Name" = "8:PresentationCore.resources.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\es\\PresentationCore.resources.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_319F794A01F24DA7B010B84BF5746B1F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_116BD942CEE84471AD2C9816EAC500BA" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_116BD942CEE84471AD2C9816EAC500BA" - { - "Name" = "8:System.Security.Cryptography.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.Cryptography.Primitives.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_11EF1D71AA6D46D794828A3A741F7AEE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_01E539312CCF4E9CA4A58A1752403D51" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Identity.Client.Extensions.Msal, Version=4.73.1.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationCore, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" "ScatterAssemblies" { - "_11EF1D71AA6D46D794828A3A741F7AEE" + "_01E539312CCF4E9CA4A58A1752403D51" { - "Name" = "8:Microsoft.Identity.Client.Extensions.Msal.dll" + "Name" = "8:PresentationCore.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.Identity.Client.Extensions.Msal.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\PresentationCore.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -23667,43 +21306,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_12335B8BAE0A4F779B4F30C11E447EB8" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_025EC274DE654D70829DAFB1D6380996" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Numerics, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ComponentModel, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_12335B8BAE0A4F779B4F30C11E447EB8" + "_025EC274DE654D70829DAFB1D6380996" { - "Name" = "8:System.Runtime.Numerics.dll" + "Name" = "8:System.ComponentModel.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Runtime.Numerics.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.ComponentModel.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_124944AD3480460F9F08D25BBEBBFE88" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\PresentationNative_cor3.dll" - "TargetName" = "8:PresentationNative_cor3.dll" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -23718,54 +21337,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_12A22C17A5EFBF5FAC6311A39452F8BA" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_12A22C17A5EFBF5FAC6311A39452F8BA" - { - "Name" = "8:netstandard.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:netstandard.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_12DBB88C07D24A3EA8D14083F0B10F43" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0295530C182F41228C836A2CB92468B7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_12DBB88C07D24A3EA8D14083F0B10F43" + "_0295530C182F41228C836A2CB92468B7" { - "Name" = "8:WindowsBase.resources.dll" + "Name" = "8:System.Net.Http.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ru\\WindowsBase.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.Http.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F050AFEC75CD404984C24AA71672DBCD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -23780,43 +21368,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_13076694956A276FD28F4D3FA60FA3B9" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_02BE941E90844B118EE56900AB646A06" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Win32.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.ProtectedData, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_13076694956A276FD28F4D3FA60FA3B9" + "_02BE941E90844B118EE56900AB646A06" { - "Name" = "8:Microsoft.Win32.Primitives.dll" + "Name" = "8:System.Security.Cryptography.ProtectedData.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.Win32.Primitives.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.Cryptography.ProtectedData.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_130E3E8850F94FCB8A6667564F05B7DC" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\mscordaccore.dll" - "TargetName" = "8:mscordaccore.dll" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -23831,23 +21399,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1393BDC59A6B4C81B84D5C2C618156EF" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_02FBD94FF43B4060A25263597E445DBA" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.AeroLite, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Transactions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_1393BDC59A6B4C81B84D5C2C618156EF" + "_02FBD94FF43B4060A25263597E445DBA" { - "Name" = "8:PresentationFramework.AeroLite.dll" + "Name" = "8:System.Transactions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\PresentationFramework.AeroLite.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Transactions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -23862,85 +21430,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_13B3F1052A56A2AA76DB87CEE3FDEE7A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0327CD370EE34AA4A8DD54EBBF99AC9E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.Watcher, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_13B3F1052A56A2AA76DB87CEE3FDEE7A" - { - "Name" = "8:System.IO.FileSystem.Watcher.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.FileSystem.Watcher.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_13C0B21BEF168B0190E20DD315BFA3E0" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.WebClient, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_13C0B21BEF168B0190E20DD315BFA3E0" - { - "Name" = "8:System.Net.WebClient.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.WebClient.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_14727598BC6740079DA62CAB552BE8A5" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Claims, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.PerformanceCounter, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_14727598BC6740079DA62CAB552BE8A5" + "_0327CD370EE34AA4A8DD54EBBF99AC9E" { - "Name" = "8:System.Security.Claims.dll" + "Name" = "8:System.Diagnostics.PerformanceCounter.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.Claims.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Diagnostics.PerformanceCounter.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -23955,23 +21461,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_14D46FEB93FA4D299E6056B1E348312F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_036569AF29D247CE9089AE07843FE315" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.CodeDom, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_14D46FEB93FA4D299E6056B1E348312F" + "_036569AF29D247CE9089AE07843FE315" { - "Name" = "8:System.CodeDom.dll" + "Name" = "8:System.Xml.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.CodeDom.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Xml.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -23986,23 +21492,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_14F2615D05BEF859A9B54262695DFFBC" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0368786955D94604AC394EEB6424743F" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.WebSockets, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Text.Encoding.CodePages, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_14F2615D05BEF859A9B54262695DFFBC" + "_0368786955D94604AC394EEB6424743F" { - "Name" = "8:System.Net.WebSockets.dll" + "Name" = "8:System.Text.Encoding.CodePages.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.WebSockets.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Text.Encoding.CodePages.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24014,26 +21520,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1528DC0C365C4EE8AA4C2CEE02CE2D85" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_036B1790890744BAAF946F87847442E0" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Principal, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_1528DC0C365C4EE8AA4C2CEE02CE2D85" + "_036B1790890744BAAF946F87847442E0" { - "Name" = "8:System.Security.Principal.dll" + "Name" = "8:UIAutomationProvider.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.Principal.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ru\\UIAutomationProvider.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_3A07FF1E066342A19AABED2888E683D3" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24048,23 +21554,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_17760E146DF74573A3BDC64BB120A84A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_036F72A4E2944377BC83DA4863D3DA37" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Emit, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Data.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_17760E146DF74573A3BDC64BB120A84A" + "_036F72A4E2944377BC83DA4863D3DA37" { - "Name" = "8:System.Reflection.Emit.dll" + "Name" = "8:System.Data.Common.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Reflection.Emit.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Data.Common.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24079,23 +21585,54 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1797384676994F4A8D20EA3733C18E0C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_046C7409807BEA0AD759D7284933C95C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.Encoding.CodePages, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Numerics.Vectors, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_1797384676994F4A8D20EA3733C18E0C" + "_046C7409807BEA0AD759D7284933C95C" { - "Name" = "8:System.Text.Encoding.CodePages.dll" + "Name" = "8:System.Numerics.Vectors.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Text.Encoding.CodePages.dll" + "SourcePath" = "8:System.Numerics.Vectors.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_04822DE2C02C421D8C46A31E8DF7C13F" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_04822DE2C02C421D8C46A31E8DF7C13F" + { + "Name" = "8:System.Xaml.resources.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\cs\\System.Xaml.resources.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_7901A3B17F9447C3A81D55DC5033828B" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24110,23 +21647,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_17F783A4246241B8930B7A23B4CAF7F7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_050836C30CA44750AF4D9258F3F0AA1C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_17F783A4246241B8930B7A23B4CAF7F7" + "_050836C30CA44750AF4D9258F3F0AA1C" { - "Name" = "8:UIAutomationProvider.resources.dll" + "Name" = "8:System.Xaml.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\de\\UIAutomationProvider.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ja\\System.Xaml.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_8C6BAC487E12445AAC4169B115BE8835" + "Folder" = "8:_EF49A53A2F124808B6DA2E203BD36641" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24141,23 +21678,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1823E60B0D33421C8F4089342F601B79" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_050B0C597A5045379389601790CC6923" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.ServicePoint, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Win32.Registry, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_1823E60B0D33421C8F4089342F601B79" + "_050B0C597A5045379389601790CC6923" { - "Name" = "8:System.Net.ServicePoint.dll" + "Name" = "8:Microsoft.Win32.Registry.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.ServicePoint.dll" + "SourcePath" = "8:Microsoft.Win32.Registry.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24172,12 +21709,12 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_18C36F57CA584D0B810FEB6B7D49F132" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0530885BBB7849768DAAAF17900A60F2" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\PenImc_cor3.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\PenImc_cor3.dll" "TargetName" = "8:PenImc_cor3.dll" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24192,23 +21729,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1947F3829A764DD2A928A23101DE2206" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0537A5F0ECDF4E38A7FBDDB5AE1F7670" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Formats.Nrbf, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_1947F3829A764DD2A928A23101DE2206" + "_0537A5F0ECDF4E38A7FBDDB5AE1F7670" { - "Name" = "8:System.Formats.Nrbf.dll" + "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Formats.Nrbf.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ko\\System.Windows.Controls.Ribbon.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_506EF00DD33D4ECF9B29B8A5A859CE45" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24223,23 +21760,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_19DAFC5E96736BDA49E1EBC7F6F773F0" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_053845DF2A80A60A9B8FE3E1BF88DECD" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Contracts, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Tokens, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_19DAFC5E96736BDA49E1EBC7F6F773F0" + "_053845DF2A80A60A9B8FE3E1BF88DECD" { - "Name" = "8:System.Diagnostics.Contracts.dll" + "Name" = "8:Microsoft.IdentityModel.Tokens.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Diagnostics.Contracts.dll" + "SourcePath" = "8:Microsoft.IdentityModel.Tokens.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24254,23 +21791,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_19FE79ED86B14135BF9ABBC86A76C182" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_06032F260A8DEC8FFD196041FDAD9A14" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Pipelines, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_19FE79ED86B14135BF9ABBC86A76C182" + "_06032F260A8DEC8FFD196041FDAD9A14" { - "Name" = "8:Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "Name" = "8:System.IO.Pipelines.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "SourcePath" = "8:System.IO.Pipelines.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24282,26 +21819,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1A2539992C2B3C1C53911F2EA24845ED" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_067B1859737D4828A07C8FF595D279CF" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_1A2539992C2B3C1C53911F2EA24845ED" + "_067B1859737D4828A07C8FF595D279CF" { - "Name" = "8:System.Runtime.Serialization.Primitives.dll" + "Name" = "8:UIAutomationClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.Serialization.Primitives.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\tr\\UIAutomationClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_D14333D71D9548B993E7562D7B181D97" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24313,26 +21850,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1A985B403E0ADE87D5D97462E7FA2488" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_07914A2459CA4EC0B9AB9FB4588055B2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.CompilerServices.Unsafe, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:WindowsBase, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" "ScatterAssemblies" { - "_1A985B403E0ADE87D5D97462E7FA2488" + "_07914A2459CA4EC0B9AB9FB4588055B2" { - "Name" = "8:System.Runtime.CompilerServices.Unsafe.dll" + "Name" = "8:WindowsBase.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.CompilerServices.Unsafe.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\WindowsBase.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24344,26 +21881,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1D1ED3F0D711477E9FF4DFF590CEAE8B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0794C57E759F44AB8BCEA1A821EE1203" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=de, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient, Version=6.0.0.0, Culture=neutral, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" "ScatterAssemblies" { - "_1D1ED3F0D711477E9FF4DFF590CEAE8B" + "_0794C57E759F44AB8BCEA1A821EE1203" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:Microsoft.Data.SqlClient.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\de\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.Data.SqlClient.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33CC24B65D7F45CE96021F8BD3CBA140" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24378,12 +21915,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D25D636F3054CFFBDE6D6B22405E7BD" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_07F8268F05364CB4980757202CE8C1DD" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\createdump.exe" - "TargetName" = "8:createdump.exe" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_07F8268F05364CB4980757202CE8C1DD" + { + "Name" = "8:ReachFramework.resources.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\tr\\ReachFramework.resources.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_D14333D71D9548B993E7562D7B181D97" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24398,23 +21946,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1D5335D7AACA430A8763AC84DDF08528" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_08B2A4B0AE329FAEEC9E36D8907702E9" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Bcl.Cryptography, Version=9.0.0.4, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.TextWriterTraceListener, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_1D5335D7AACA430A8763AC84DDF08528" + "_08B2A4B0AE329FAEEC9E36D8907702E9" { - "Name" = "8:Microsoft.Bcl.Cryptography.dll" + "Name" = "8:System.Diagnostics.TextWriterTraceListener.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.Bcl.Cryptography.dll" + "SourcePath" = "8:System.Diagnostics.TextWriterTraceListener.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24426,26 +21974,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1DA49025F60540E381128AB6C98B1260" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_08E6AAF1D9314A638835D668E74CEEFC" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_1DA49025F60540E381128AB6C98B1260" + "_08E6AAF1D9314A638835D668E74CEEFC" { - "Name" = "8:System.Xml.Linq.dll" + "Name" = "8:PresentationUI.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Xml.Linq.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ko\\PresentationUI.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_506EF00DD33D4ECF9B29B8A5A859CE45" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24460,23 +22008,32 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1E1DFC70D9B141D28F527E5A966F2551" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_09D385A292B34CDD839AECA668BD3A08" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_1E1DFC70D9B141D28F527E5A966F2551" - { - "Name" = "8:System.Configuration.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Configuration.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\publish\\setup-win-x64\\mscorrc.dll" + "TargetName" = "8:mscorrc.dll" + "Tag" = "8:" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + } + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A54D85D895B4A41BD3676196CB02DF5" + { + "SourcePath" = "8:..\\Resources\\Housing_voltage_current_icon_msi_noborder.ico" + "TargetName" = "8:Housing_voltage_current_icon_msi_noborder.ico" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24491,23 +22048,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1E240AE58646D3B961307C6B533D156C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0A56519FAC61F9C6C691F628C8318F4C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ValueTuple, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.AppContext, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_1E240AE58646D3B961307C6B533D156C" + "_0A56519FAC61F9C6C691F628C8318F4C" { - "Name" = "8:System.ValueTuple.dll" + "Name" = "8:System.AppContext.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.ValueTuple.dll" + "SourcePath" = "8:System.AppContext.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24522,23 +22079,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1E31CB5CB98AC6D1CA22D47553042578" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0A679AA7511C440C9E2D3079BA212816" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XPath, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_1E31CB5CB98AC6D1CA22D47553042578" + "_0A679AA7511C440C9E2D3079BA212816" { - "Name" = "8:System.Xml.XPath.dll" + "Name" = "8:PresentationUI.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Xml.XPath.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pt-BR\\PresentationUI.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_FE1199FD2AED473F9607036466985701" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24550,26 +22107,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1E50F1FAE8654AB598E1D23C58C9236F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0AAB97EB5A764B0E86E53B0174647FB5" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Debug, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Reflection, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_1E50F1FAE8654AB598E1D23C58C9236F" + "_0AAB97EB5A764B0E86E53B0174647FB5" { - "Name" = "8:System.Diagnostics.Debug.dll" + "Name" = "8:System.Reflection.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Diagnostics.Debug.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Reflection.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24584,23 +22141,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1E5B81CCC8D0479EB4E02A4D51586F66" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0AE5E64191244A5AA11686D51B37BD7C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_1E5B81CCC8D0479EB4E02A4D51586F66" + "_0AE5E64191244A5AA11686D51B37BD7C" { - "Name" = "8:netstandard.dll" + "Name" = "8:PresentationFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\netstandard.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ja\\PresentationFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_EF49A53A2F124808B6DA2E203BD36641" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24615,23 +22172,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1E65E959ABB1497194CF38F4798A8F91" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0B5AD937F1C248DBACFB517AB5E7EE8E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_1E65E959ABB1497194CF38F4798A8F91" + "_0B5AD937F1C248DBACFB517AB5E7EE8E" { - "Name" = "8:UIAutomationProvider.resources.dll" + "Name" = "8:WindowsBase.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pl\\UIAutomationProvider.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\fr\\WindowsBase.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33ECECC7E762456A9E89108B3C562998" + "Folder" = "8:_CAA532AD901F4BF8A56F3FCA4F0F1124" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24646,23 +22203,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1EFB3A511A9240E98D2CBCEB471B206D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0C1A606DD62F7131D94DB428C43DB5A6" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=pl, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.VisualBasic.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_1EFB3A511A9240E98D2CBCEB471B206D" + "_0C1A606DD62F7131D94DB428C43DB5A6" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:Microsoft.VisualBasic.Core.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pl\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:Microsoft.VisualBasic.Core.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33ECECC7E762456A9E89108B3C562998" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24674,26 +22231,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1F07CC99CC9947599D83707F1D15766A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0C35F03470F41E63CFC2314557D58C9F" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.EventLog, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Formats.Asn1, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_1F07CC99CC9947599D83707F1D15766A" + "_0C35F03470F41E63CFC2314557D58C9F" { - "Name" = "8:System.Diagnostics.EventLog.dll" + "Name" = "8:System.Formats.Asn1.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Diagnostics.EventLog.dll" + "SourcePath" = "8:System.Formats.Asn1.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24705,26 +22262,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1F46440310454818831FECAED692F4FF" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0CD5D9C4AFDB414E9294643364414C0D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_1F46440310454818831FECAED692F4FF" + "_0CD5D9C4AFDB414E9294643364414C0D" { - "Name" = "8:System.Xaml.resources.dll" + "Name" = "8:WindowsBase.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ru\\System.Xaml.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\it\\WindowsBase.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F050AFEC75CD404984C24AA71672DBCD" + "Folder" = "8:_154C18835E314DCA89F39AA7646FFC12" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24739,23 +22296,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2033A1DA8135A1EC6C8F9934F70B5276" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0CE6E39840DD4AFA8D75CF4E5FAE6F46" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.Encoding.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.OpenSsl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2033A1DA8135A1EC6C8F9934F70B5276" + "_0CE6E39840DD4AFA8D75CF4E5FAE6F46" { - "Name" = "8:System.Text.Encoding.Extensions.dll" + "Name" = "8:System.Security.Cryptography.OpenSsl.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Text.Encoding.Extensions.dll" + "SourcePath" = "8:System.Security.Cryptography.OpenSsl.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24770,23 +22327,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2091BD7CF410472990D110B9A62F377F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0D1200924CA21F19FF53C62B7B8354FF" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=es, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Ping, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2091BD7CF410472990D110B9A62F377F" + "_0D1200924CA21F19FF53C62B7B8354FF" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:System.Net.Ping.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\es\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:System.Net.Ping.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_319F794A01F24DA7B010B84BF5746B1F" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24798,26 +22355,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_20C4B3F3B3834BEEAD67E86770EACBD0" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0D7CAA399994014550D649BDB391BF30" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.DiagnosticSource, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_20C4B3F3B3834BEEAD67E86770EACBD0" + "_0D7CAA399994014550D649BDB391BF30" { - "Name" = "8:WindowsBase.resources.dll" + "Name" = "8:System.Diagnostics.DiagnosticSource.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\fr\\WindowsBase.resources.dll" + "SourcePath" = "8:System.Diagnostics.DiagnosticSource.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_0D6BB22DBA6348629B76C0E2123EBBFD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24829,26 +22386,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_21170693B62D4230D2C051E5CCCE44DB" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0DECFF529DF243F5A0FFFDEDB84FD568" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_21170693B62D4230D2C051E5CCCE44DB" + "_0DECFF529DF243F5A0FFFDEDB84FD568" { - "Name" = "8:System.Net.Primitives.dll" + "Name" = "8:PresentationUI.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.Primitives.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\de\\PresentationUI.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_05DBECC2336740CDB09A80EB68B7B14F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24860,26 +22417,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_212F275B12BB4DF098FC914C59EB5539" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0E1E7B42F35E4933874BC1468FC5DF8D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_212F275B12BB4DF098FC914C59EB5539" + "_0E1E7B42F35E4933874BC1468FC5DF8D" { - "Name" = "8:ReachFramework.resources.dll" + "Name" = "8:PresentationCore.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pl\\ReachFramework.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\es\\PresentationCore.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33ECECC7E762456A9E89108B3C562998" + "Folder" = "8:_50D95BB66E0E4F02ABA1951CD4EE263F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24894,23 +22451,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_214C0A61A7B4A26FDBEB0788B62D0089" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0E632DF9EB5C420ABC24BDEB71F6B1D2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq.Parallel, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_214C0A61A7B4A26FDBEB0788B62D0089" + "_0E632DF9EB5C420ABC24BDEB71F6B1D2" { - "Name" = "8:System.Linq.Parallel.dll" + "Name" = "8:UIAutomationClientSideProviders.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Linq.Parallel.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\fr\\UIAutomationClientSideProviders.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_CAA532AD901F4BF8A56F3FCA4F0F1124" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24922,26 +22479,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_219960535F374502A9C52CAD67D578FA" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0F1F0D6286EEEB4EC6814F48A7D049A6" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tracing, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Caching.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" "ScatterAssemblies" { - "_219960535F374502A9C52CAD67D578FA" + "_0F1F0D6286EEEB4EC6814F48A7D049A6" { - "Name" = "8:System.Diagnostics.Tracing.dll" + "Name" = "8:Microsoft.Extensions.Caching.Abstractions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Diagnostics.Tracing.dll" + "SourcePath" = "8:Microsoft.Extensions.Caching.Abstractions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24953,26 +22510,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_21CD9813D578469288F33648FDEC7EB6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1018C7A26FA94652A208F5653921720D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.SecureString, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Principal, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_21CD9813D578469288F33648FDEC7EB6" + "_1018C7A26FA94652A208F5653921720D" { - "Name" = "8:System.Security.SecureString.dll" + "Name" = "8:System.Security.Principal.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.SecureString.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.Principal.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -24987,23 +22544,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_22654B798E344458845FBB6968188CAC" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1049DED220694EA7A18EE141D7B650B2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, processorArchitecture=MSIL" "ScatterAssemblies" { - "_22654B798E344458845FBB6968188CAC" + "_1049DED220694EA7A18EE141D7B650B2" { - "Name" = "8:WindowsBase.resources.dll" + "Name" = "8:System.Private.CoreLib.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\es\\WindowsBase.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Private.CoreLib.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_319F794A01F24DA7B010B84BF5746B1F" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25018,23 +22575,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_22798D688AD347BE8DEA7C7822E632D0" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_120D152D0B8B41469B8B3B4DF718F015" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ComponentModel.TypeConverter, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_22798D688AD347BE8DEA7C7822E632D0" + "_120D152D0B8B41469B8B3B4DF718F015" { - "Name" = "8:System.Xaml.resources.dll" + "Name" = "8:System.ComponentModel.TypeConverter.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\es\\System.Xaml.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.ComponentModel.TypeConverter.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_319F794A01F24DA7B010B84BF5746B1F" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25049,23 +22606,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2285A247283A47AB9A1A13A63208315D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1227F5127E12287474AC428519CF1F5A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Net.NameResolution, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2285A247283A47AB9A1A13A63208315D" + "_1227F5127E12287474AC428519CF1F5A" { - "Name" = "8:PresentationFramework.dll" + "Name" = "8:System.Net.NameResolution.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\PresentationFramework.dll" + "SourcePath" = "8:System.Net.NameResolution.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25077,26 +22634,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2343DBD422AD4155ADE348A17AB95FEB" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_12A45DA723FC486CA7EE607E2F7762F2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Encoding, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2343DBD422AD4155ADE348A17AB95FEB" + "_12A45DA723FC486CA7EE607E2F7762F2" { - "Name" = "8:System.Security.Cryptography.Encoding.dll" + "Name" = "8:System.Windows.Input.Manipulations.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.Cryptography.Encoding.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\fr\\System.Windows.Input.Manipulations.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_CAA532AD901F4BF8A56F3FCA4F0F1124" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25111,23 +22668,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_23ACF22077A74F59972762E7C95E5E46" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1359C7CA18A745EA8445F44058628957" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Permissions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_23ACF22077A74F59972762E7C95E5E46" + "_1359C7CA18A745EA8445F44058628957" { - "Name" = "8:WindowsBase.resources.dll" + "Name" = "8:System.Security.Permissions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hant\\WindowsBase.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.Permissions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_FFD6EAF1B3444345AC6B6F35CA58BF38" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25142,23 +22699,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_23AFAB7A95344E269BA08E995B46A2D4" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_144406C0B2B04AACA803CDBE2B1E97AB" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_23AFAB7A95344E269BA08E995B46A2D4" + "_144406C0B2B04AACA803CDBE2B1E97AB" { - "Name" = "8:System.Security.dll" + "Name" = "8:PresentationFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ko\\PresentationFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_506EF00DD33D4ECF9B29B8A5A859CE45" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25173,23 +22730,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_243FEEBC941A41DD9C5F736248AFD819" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_147B36A46E7344C9AE8E2C93AB680825" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Options, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_243FEEBC941A41DD9C5F736248AFD819" + "_147B36A46E7344C9AE8E2C93AB680825" { - "Name" = "8:Microsoft.Extensions.Options.dll" + "Name" = "8:PresentationUI.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.Extensions.Options.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hant\\PresentationUI.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_07FEAE190090436A957E9601C38A7170" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25204,54 +22761,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_24A11F29D1E1054DAFFED7697AF88CD2" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_153A8EA805CA4828B967B48FF6D4BC37" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq.Queryable, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_24A11F29D1E1054DAFFED7697AF88CD2" - { - "Name" = "8:System.Linq.Queryable.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Linq.Queryable.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_24C2C186651045C29ABC82B522AF0835" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections.Specialized, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xml.XPath, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_24C2C186651045C29ABC82B522AF0835" + "_153A8EA805CA4828B967B48FF6D4BC37" { - "Name" = "8:System.Collections.Specialized.dll" + "Name" = "8:System.Xml.XPath.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Collections.Specialized.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Xml.XPath.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25266,54 +22792,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_24EED38216634C0AFCFA545072D23596" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_24EED38216634C0AFCFA545072D23596" - { - "Name" = "8:System.Collections.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Collections.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_25B99998ED179B2DCB227ABF4BE00662" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1621CD8AC45709FF928DE3ED82B24D00" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Globalization.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Algorithms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_25B99998ED179B2DCB227ABF4BE00662" + "_1621CD8AC45709FF928DE3ED82B24D00" { - "Name" = "8:System.Globalization.Extensions.dll" + "Name" = "8:System.Security.Cryptography.Algorithms.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Globalization.Extensions.dll" + "SourcePath" = "8:System.Security.Cryptography.Algorithms.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25328,54 +22823,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_26BB9E5994524C65B5519578704FB142" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_26BB9E5994524C65B5519578704FB142" - { - "Name" = "8:UIAutomationClient.resources.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ja\\UIAutomationClient.resources.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_98051D1C933E479E8031502C52F83D92" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_271011AD979B4CBBBC9E510C783444B0" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_16758E102315420CAF07169A47EF16A8" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.WebProxy, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.DiagnosticSource, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_271011AD979B4CBBBC9E510C783444B0" + "_16758E102315420CAF07169A47EF16A8" { - "Name" = "8:System.Net.WebProxy.dll" + "Name" = "8:System.Diagnostics.DiagnosticSource.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.WebProxy.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Diagnostics.DiagnosticSource.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25390,23 +22854,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2795AE63D8FD24F65235AA36541F914C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_168090D595D80D0A86442948560A106E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.TypeConverter, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Formats.Tar, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2795AE63D8FD24F65235AA36541F914C" + "_168090D595D80D0A86442948560A106E" { - "Name" = "8:System.ComponentModel.TypeConverter.dll" + "Name" = "8:System.Formats.Tar.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.ComponentModel.TypeConverter.dll" + "SourcePath" = "8:System.Formats.Tar.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25421,54 +22885,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_27E33DD3159943A180F3FD6E7A0A88F5" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_16B991C2E44549CE8827F82098FA9753" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Tasks, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_27E33DD3159943A180F3FD6E7A0A88F5" - { - "Name" = "8:System.Threading.Tasks.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Threading.Tasks.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_27FCB52AD02545A5A271B25D61F652AB" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_27FCB52AD02545A5A271B25D61F652AB" + "_16B991C2E44549CE8827F82098FA9753" { - "Name" = "8:UIAutomationClient.resources.dll" + "Name" = "8:PresentationUI.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\it\\UIAutomationClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\tr\\PresentationUI.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33866903D6804194A4096F8D1E34C9F3" + "Folder" = "8:_D14333D71D9548B993E7562D7B181D97" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25483,23 +22916,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_289443165ADD4A66B8F54919CCAC19CA" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_16DAD5A97AA149429273133023C05F9A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.Lightweight, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_289443165ADD4A66B8F54919CCAC19CA" + "_16DAD5A97AA149429273133023C05F9A" { - "Name" = "8:System.Reflection.Emit.Lightweight.dll" + "Name" = "8:System.IO.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Reflection.Emit.Lightweight.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25514,23 +22947,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_28BF8F1E26D2410DBF5646E03FDDDCEE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_16EB40669FCA68C2E34800ABC4D81F41" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient, Version=6.0.0.0, Culture=neutral, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_28BF8F1E26D2410DBF5646E03FDDDCEE" + "_16EB40669FCA68C2E34800ABC4D81F41" { - "Name" = "8:Microsoft.Data.SqlClient.dll" + "Name" = "8:System.Windows.Extensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.Data.SqlClient.dll" + "SourcePath" = "8:System.Windows.Extensions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25542,26 +22975,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_28F64806236246FD8929239A675BD1B7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_17E7BB17CF444C9782DC6CDD352FBB0D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Numerics.Vectors, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_28F64806236246FD8929239A675BD1B7" + "_17E7BB17CF444C9782DC6CDD352FBB0D" { - "Name" = "8:System.Numerics.Vectors.dll" + "Name" = "8:WindowsBase.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Numerics.Vectors.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ru\\WindowsBase.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_3A07FF1E066342A19AABED2888E683D3" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25576,23 +23009,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2903BC31F1FC409428A55014360EA7D9" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_183A4519C9E8986D056A0C2787481B51" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XmlSerializer, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.CompilerServices.Unsafe, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2903BC31F1FC409428A55014360EA7D9" + "_183A4519C9E8986D056A0C2787481B51" { - "Name" = "8:System.Xml.XmlSerializer.dll" + "Name" = "8:System.Runtime.CompilerServices.Unsafe.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Xml.XmlSerializer.dll" + "SourcePath" = "8:System.Runtime.CompilerServices.Unsafe.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25607,23 +23040,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_293BB0C972324265A8F6FB8D8FC20661" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_184D1FF76E0A4B30B78466ACCBBB9E67" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_293BB0C972324265A8F6FB8D8FC20661" + "_184D1FF76E0A4B30B78466ACCBBB9E67" { - "Name" = "8:UIAutomationTypes.resources.dll" + "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ko\\UIAutomationTypes.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pl\\System.Windows.Controls.Ribbon.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_CB3BE22960A44DC39C9AA84ABE16E22A" + "Folder" = "8:_C688DABCFD5B492EB58182172839DAB4" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25638,54 +23071,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_29AD8DC42D931B91562FEE551A1A0D5F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.Lightweight, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_29AD8DC42D931B91562FEE551A1A0D5F" - { - "Name" = "8:System.Reflection.Emit.Lightweight.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Reflection.Emit.Lightweight.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_29CB956579F014CB39FEC953CA2F0C41" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1875465143744924A9CD3694FA7C7300" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Principal.Windows, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_29CB956579F014CB39FEC953CA2F0C41" + "_1875465143744924A9CD3694FA7C7300" { - "Name" = "8:System.Security.Principal.Windows.dll" + "Name" = "8:WindowsBase.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.Principal.Windows.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pl\\WindowsBase.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_C688DABCFD5B492EB58182172839DAB4" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25697,26 +23099,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2A4578BF545FCDD4D344601CF0C7C7ED" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_18F64B11FA2B3AF2FD7BC1EBF31D85A4" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Overlapped, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading.Channels, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2A4578BF545FCDD4D344601CF0C7C7ED" + "_18F64B11FA2B3AF2FD7BC1EBF31D85A4" { - "Name" = "8:System.Threading.Overlapped.dll" + "Name" = "8:System.Threading.Channels.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Threading.Overlapped.dll" + "SourcePath" = "8:System.Threading.Channels.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25731,23 +23133,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2A55321B97C0400287EFF2740925CAF8" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1900E767C0AF4A0685E72AD00CFE245B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2A55321B97C0400287EFF2740925CAF8" + "_1900E767C0AF4A0685E72AD00CFE245B" { - "Name" = "8:PresentationFramework.resources.dll" + "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hans\\PresentationFramework.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\cs\\System.Windows.Controls.Ribbon.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_A526A21B472242C9B6F4662E9D05A435" + "Folder" = "8:_7901A3B17F9447C3A81D55DC5033828B" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25762,23 +23164,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2ABF3C2F493743AE95DFB0B20EA79021" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_190A2E93252ABCDEC68945E28E95031C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ServiceModel.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Globalization, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2ABF3C2F493743AE95DFB0B20EA79021" + "_190A2E93252ABCDEC68945E28E95031C" { - "Name" = "8:System.ServiceModel.Web.dll" + "Name" = "8:System.Globalization.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.ServiceModel.Web.dll" + "SourcePath" = "8:System.Globalization.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25790,26 +23192,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2AED01C7EC6542DBA02321974108B0A3" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_195464F81556BDF6BDAF089A424D04BD" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.TypeExtensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.AccessControl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2AED01C7EC6542DBA02321974108B0A3" + "_195464F81556BDF6BDAF089A424D04BD" { - "Name" = "8:System.Reflection.TypeExtensions.dll" + "Name" = "8:System.Security.AccessControl.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Reflection.TypeExtensions.dll" + "SourcePath" = "8:System.Security.AccessControl.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25821,26 +23223,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2BD2099533944140B42CFF8E420B7E52" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_197BB23CB89E43A5B6ADC5825C6EA03C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.CodeDom, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2BD2099533944140B42CFF8E420B7E52" + "_197BB23CB89E43A5B6ADC5825C6EA03C" { - "Name" = "8:PresentationUI.resources.dll" + "Name" = "8:System.CodeDom.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\de\\PresentationUI.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.CodeDom.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_8C6BAC487E12445AAC4169B115BE8835" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25855,23 +23257,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2C7077EC031245D3A7672A143BDA4CAB" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_19ECA032F766EDFBA4314CBFD71873F8" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Dynamic.Runtime, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2C7077EC031245D3A7672A143BDA4CAB" + "_19ECA032F766EDFBA4314CBFD71873F8" { - "Name" = "8:UIAutomationClient.resources.dll" + "Name" = "8:System.Dynamic.Runtime.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pl\\UIAutomationClient.resources.dll" + "SourcePath" = "8:System.Dynamic.Runtime.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33ECECC7E762456A9E89108B3C562998" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25883,26 +23285,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2CA572F0801641B0A319B8A36405E97C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1A16B3277BC0470DB6FA4A7178FAE161" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Tasks.Parallel, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2CA572F0801641B0A319B8A36405E97C" + "_1A16B3277BC0470DB6FA4A7178FAE161" { - "Name" = "8:System.Threading.Tasks.Parallel.dll" + "Name" = "8:UIAutomationClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Threading.Tasks.Parallel.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\fr\\UIAutomationClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_CAA532AD901F4BF8A56F3FCA4F0F1124" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25917,23 +23319,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2CBD0767BD3D4FE49EEF2B824C122552" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1A3116329853417B930370F0E02BADBA" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2CBD0767BD3D4FE49EEF2B824C122552" + "_1A3116329853417B930370F0E02BADBA" { - "Name" = "8:UIAutomationProvider.resources.dll" + "Name" = "8:UIAutomationClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\es\\UIAutomationProvider.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\es\\UIAutomationClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_319F794A01F24DA7B010B84BF5746B1F" + "Folder" = "8:_50D95BB66E0E4F02ABA1951CD4EE263F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25948,23 +23350,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2D60AB36513C46C78C8D1C3B182AD525" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1A39A6ED544247C2B9292099BA8731D1" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Globalization.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Memory.Data, Version=8.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2D60AB36513C46C78C8D1C3B182AD525" + "_1A39A6ED544247C2B9292099BA8731D1" { - "Name" = "8:System.Globalization.Extensions.dll" + "Name" = "8:System.Memory.Data.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Globalization.Extensions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Memory.Data.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -25979,23 +23381,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2D8F89A0089B45B9A02D9A91A2D76987" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1C187CF17FC84DA69B8F24DD1ABF3117" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Identity.Client, Version=4.73.1.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2D8F89A0089B45B9A02D9A91A2D76987" + "_1C187CF17FC84DA69B8F24DD1ABF3117" { - "Name" = "8:UIAutomationClientSideProviders.resources.dll" + "Name" = "8:Microsoft.Identity.Client.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\fr\\UIAutomationClientSideProviders.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.Identity.Client.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_0D6BB22DBA6348629B76C0E2123EBBFD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26010,23 +23412,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2DB329A52A3743378C38FFAAC6E4B773" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1C737FA2F1C14AECAA30697D490522CC" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.Contracts, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2DB329A52A3743378C38FFAAC6E4B773" + "_1C737FA2F1C14AECAA30697D490522CC" { - "Name" = "8:UIAutomationTypes.resources.dll" + "Name" = "8:System.Diagnostics.Contracts.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\fr\\UIAutomationTypes.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Diagnostics.Contracts.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_0D6BB22DBA6348629B76C0E2123EBBFD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26041,23 +23443,54 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2DD98C1858E945F19BA2B91B316B07A1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1C9958F853D5A78FDDAF7ECE8C7E37B9" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Azure.Identity, Version=1.14.2.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient, Version=6.0.0.0, Culture=neutral, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2DD98C1858E945F19BA2B91B316B07A1" + "_1C9958F853D5A78FDDAF7ECE8C7E37B9" { - "Name" = "8:Azure.Identity.dll" + "Name" = "8:Microsoft.Data.SqlClient.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Azure.Identity.dll" + "SourcePath" = "8:Microsoft.Data.SqlClient.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1CB01662D311443BA86B4C7D1C5F91BC" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Threading.Tasks.Parallel, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_1CB01662D311443BA86B4C7D1C5F91BC" + { + "Name" = "8:System.Threading.Tasks.Parallel.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Threading.Tasks.Parallel.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26072,23 +23505,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2DE803115352471BA7B719E7A0F4F047" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1CC42556B24A44EFA52D3C6ED39D4136" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.ILGeneration, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Globalization, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2DE803115352471BA7B719E7A0F4F047" + "_1CC42556B24A44EFA52D3C6ED39D4136" { - "Name" = "8:System.Reflection.Emit.ILGeneration.dll" + "Name" = "8:System.Globalization.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Reflection.Emit.ILGeneration.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Globalization.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26103,23 +23536,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2E21F153B5AD896A9931D7560E3EC457" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1D6A410DBAE3AFD9E7D7475D8379E809" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Tasks, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ComponentModel, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2E21F153B5AD896A9931D7560E3EC457" + "_1D6A410DBAE3AFD9E7D7475D8379E809" { - "Name" = "8:System.Threading.Tasks.dll" + "Name" = "8:System.ComponentModel.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Threading.Tasks.dll" + "SourcePath" = "8:System.ComponentModel.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26134,23 +23567,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2E3DA24B734E4A11A8D0E0753635C7AE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1DB0820845EDE427EC72C63B74AB812A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.PerformanceCounter, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xml.XmlDocument, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2E3DA24B734E4A11A8D0E0753635C7AE" + "_1DB0820845EDE427EC72C63B74AB812A" { - "Name" = "8:System.Diagnostics.PerformanceCounter.dll" + "Name" = "8:System.Xml.XmlDocument.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Diagnostics.PerformanceCounter.dll" + "SourcePath" = "8:System.Xml.XmlDocument.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26162,26 +23595,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2E9A505765EB42E38C5FD784A3A5F144" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1DFC69D3F1F54EB9BD372F5DEFABCEA6" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2E9A505765EB42E38C5FD784A3A5F144" + "_1DFC69D3F1F54EB9BD372F5DEFABCEA6" { - "Name" = "8:System.Web.dll" + "Name" = "8:PresentationCore.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Web.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pt-BR\\PresentationCore.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_FE1199FD2AED473F9607036466985701" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26196,23 +23629,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2F1F84E9CA7D46DF9F9739205F12F95B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1EBFA83B0E0372E14B635FEC41900DCE" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.AccessControl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.Lightweight, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2F1F84E9CA7D46DF9F9739205F12F95B" + "_1EBFA83B0E0372E14B635FEC41900DCE" { - "Name" = "8:System.IO.FileSystem.AccessControl.dll" + "Name" = "8:System.Reflection.Emit.Lightweight.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.FileSystem.AccessControl.dll" + "SourcePath" = "8:System.Reflection.Emit.Lightweight.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26224,26 +23657,57 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2F2E12B5737144529E85E63A1D63C778" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1EF904821BA64F522142ACB4C8E61033" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Protocols.OpenIdConnect, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2F2E12B5737144529E85E63A1D63C778" + "_1EF904821BA64F522142ACB4C8E61033" { - "Name" = "8:System.Reflection.Primitives.dll" + "Name" = "8:Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1F05C5740019436CA4072317066FB1AC" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:Azure.Identity, Version=1.14.2.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_1F05C5740019436CA4072317066FB1AC" + { + "Name" = "8:Azure.Identity.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Reflection.Primitives.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Azure.Identity.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26258,23 +23722,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3032BD5A329D929A96C6738327C6631A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1F110DF3B1D440349F33E0F881C9A394" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Channels, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3032BD5A329D929A96C6738327C6631A" + "_1F110DF3B1D440349F33E0F881C9A394" { - "Name" = "8:System.Threading.Channels.dll" + "Name" = "8:WindowsBase.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Threading.Channels.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\de\\WindowsBase.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_05DBECC2336740CDB09A80EB68B7B14F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26286,26 +23750,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_303CFCE7B81869E4DD9974889C4F4719" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2024DBA65B2E695BEA2FE6EBD3454FF6" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:DirectWriteForwarder, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Linq.Queryable, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_303CFCE7B81869E4DD9974889C4F4719" + "_2024DBA65B2E695BEA2FE6EBD3454FF6" { - "Name" = "8:DirectWriteForwarder.dll" + "Name" = "8:System.Linq.Queryable.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:DirectWriteForwarder.dll" + "SourcePath" = "8:System.Linq.Queryable.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26320,23 +23784,43 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_303F7CF3217B4015923D69C06C37BC75" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2035F967DC674709A414035CBF8E36FD" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Data.DataSetExtensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_303F7CF3217B4015923D69C06C37BC75" + "_2035F967DC674709A414035CBF8E36FD" { - "Name" = "8:System.Windows.Input.Manipulations.resources.dll" + "Name" = "8:System.Data.DataSetExtensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\fr\\System.Windows.Input.Manipulations.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Data.DataSetExtensions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_0D6BB22DBA6348629B76C0E2123EBBFD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + } + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_208BDA42059B42968ED5851D23443017" + { + "SourcePath" = "8:..\\publish\\setup-win-x64\\InspectionSettings.ini" + "TargetName" = "8:InspectionSettings.ini" + "Tag" = "8:" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26351,23 +23835,54 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_311C9D1D07FB4B038396A7DB0015BAF1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_209CC981198B092EEADFA404D4E99DE1" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Protocols.OpenIdConnect, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Claims, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_311C9D1D07FB4B038396A7DB0015BAF1" + "_209CC981198B092EEADFA404D4E99DE1" { - "Name" = "8:Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" + "Name" = "8:System.Security.Claims.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" + "SourcePath" = "8:System.Security.Claims.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_20D842E976454292AAD59C3710685729" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Threading.Thread, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_20D842E976454292AAD59C3710685729" + { + "Name" = "8:System.Threading.Thread.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Threading.Thread.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26382,23 +23897,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_319B5098468C036CF599E7E6019DC0A2" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2116ADB1ABE805FABB3C862848A4F461" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Globalization.Calendars, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.NetworkInformation, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_319B5098468C036CF599E7E6019DC0A2" + "_2116ADB1ABE805FABB3C862848A4F461" { - "Name" = "8:System.Globalization.Calendars.dll" + "Name" = "8:System.Net.NetworkInformation.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Globalization.Calendars.dll" + "SourcePath" = "8:System.Net.NetworkInformation.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26413,12 +23928,12 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31A44E8A5FCC49F49085151A64B5E15A" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2136DF79E3D947F98359005D8D8AB1FA" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\msquic.dll" - "TargetName" = "8:msquic.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\hostfxr.dll" + "TargetName" = "8:hostfxr.dll" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26433,23 +23948,54 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3205AE3C3826417C96B22E013AB23961" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_21E68C1A94E92853B17A098E208A63D5" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Tokens, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Http.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3205AE3C3826417C96B22E013AB23961" + "_21E68C1A94E92853B17A098E208A63D5" { - "Name" = "8:Microsoft.IdentityModel.Tokens.dll" + "Name" = "8:System.Net.Http.Json.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.IdentityModel.Tokens.dll" + "SourcePath" = "8:System.Net.Http.Json.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2297D78D3E90455E8F53C4BE8C5E0F94" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=zh-Hant, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_2297D78D3E90455E8F53C4BE8C5E0F94" + { + "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hant\\Microsoft.Data.SqlClient.resources.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_07FEAE190090436A957E9601C38A7170" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26464,23 +24010,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_32A789F4BBF15B847138B319652834BF" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_234A61A2BB88F06DD30B16DE9F66E565" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections.NonGeneric, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Console, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_32A789F4BBF15B847138B319652834BF" + "_234A61A2BB88F06DD30B16DE9F66E565" { - "Name" = "8:System.Collections.NonGeneric.dll" + "Name" = "8:System.Console.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Collections.NonGeneric.dll" + "SourcePath" = "8:System.Console.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26495,23 +24041,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_32BC4BF42CC040299C37E6C214492928" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_248BBDA68E464FD0BF31E05062AB7B23" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Accessibility, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_32BC4BF42CC040299C37E6C214492928" + "_248BBDA68E464FD0BF31E05062AB7B23" { - "Name" = "8:Accessibility.dll" + "Name" = "8:System.Windows.Input.Manipulations.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Accessibility.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hant\\System.Windows.Input.Manipulations.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_07FEAE190090436A957E9601C38A7170" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26526,23 +24072,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_32D8F819A53145E1B5EB3B705C1B3281" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_253BC8A12B714CCCBBAD8BEA9AB232AF" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Memory, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_32D8F819A53145E1B5EB3B705C1B3281" + "_253BC8A12B714CCCBBAD8BEA9AB232AF" { - "Name" = "8:System.Xaml.resources.dll" + "Name" = "8:System.Memory.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\cs\\System.Xaml.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Memory.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_39C4141125A7444BAD628B61802AD256" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26557,23 +24103,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_332A859EB8C541A1A90A998EE3709DF7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_25E58EB806A4EC8427C4EB8A218A5087" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.EventLog, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_332A859EB8C541A1A90A998EE3709DF7" + "_25E58EB806A4EC8427C4EB8A218A5087" { - "Name" = "8:UIAutomationClientSideProviders.resources.dll" + "Name" = "8:System.Diagnostics.EventLog.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pl\\UIAutomationClientSideProviders.resources.dll" + "SourcePath" = "8:System.Diagnostics.EventLog.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33ECECC7E762456A9E89108B3C562998" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26585,26 +24131,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_340686EA0C7D495D872D8CC893B87AE0" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_25FF3BA4F04D44A29B55492225D57B91" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_340686EA0C7D495D872D8CC893B87AE0" + "_25FF3BA4F04D44A29B55492225D57B91" { - "Name" = "8:System.Private.CoreLib.dll" + "Name" = "8:UIAutomationTypes.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Private.CoreLib.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\de\\UIAutomationTypes.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_05DBECC2336740CDB09A80EB68B7B14F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26619,23 +24165,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_34D818AA520F45E993FF680D36AD063B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_28ED007DCB2C4A0F92918CFFD14EFB47" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_34D818AA520F45E993FF680D36AD063B" + "_28ED007DCB2C4A0F92918CFFD14EFB47" { - "Name" = "8:UIAutomationProvider.resources.dll" + "Name" = "8:System.Xaml.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ru\\UIAutomationProvider.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\de\\System.Xaml.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F050AFEC75CD404984C24AA71672DBCD" + "Folder" = "8:_05DBECC2336740CDB09A80EB68B7B14F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26650,23 +24196,43 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3578A5B920F94C4DB0383BC28AA394FF" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_29F7A2045FA2410D8F022FD6814F9F0F" + { + "SourcePath" = "8:..\\publish\\setup-win-x64\\mscordaccore.dll" + "TargetName" = "8:mscordaccore.dll" + "Tag" = "8:" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2A481EE8B108B1BA0DA9D0F7D4DFF3D3" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading.Tasks, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3578A5B920F94C4DB0383BC28AA394FF" + "_2A481EE8B108B1BA0DA9D0F7D4DFF3D3" { - "Name" = "8:ReachFramework.resources.dll" + "Name" = "8:System.Threading.Tasks.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hans\\ReachFramework.resources.dll" + "SourcePath" = "8:System.Threading.Tasks.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_A526A21B472242C9B6F4662E9D05A435" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26678,26 +24244,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_35905B61896E4B85BA1D8C0529AF72AC" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2A984AB742E34D9CB2BB84942F51F4A2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.X509Certificates, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_35905B61896E4B85BA1D8C0529AF72AC" + "_2A984AB742E34D9CB2BB84942F51F4A2" { - "Name" = "8:System.Security.Cryptography.X509Certificates.dll" + "Name" = "8:UIAutomationProvider.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.Cryptography.X509Certificates.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\cs\\UIAutomationProvider.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_7901A3B17F9447C3A81D55DC5033828B" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26712,23 +24278,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3641F13EEE6D40418EBD3ABED7007E10" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2B914DD2B9EB4A0383F6BD3034EA3F53" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.ReaderWriter, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.UnmanagedMemoryStream, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3641F13EEE6D40418EBD3ABED7007E10" + "_2B914DD2B9EB4A0383F6BD3034EA3F53" { - "Name" = "8:System.Xml.ReaderWriter.dll" + "Name" = "8:System.IO.UnmanagedMemoryStream.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Xml.ReaderWriter.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.UnmanagedMemoryStream.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26743,23 +24309,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_368AA1A6224844B6B09059C68A46DBE6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2B9CF255BD67578217BF36A742BD97A5" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=tr, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Globalization.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_368AA1A6224844B6B09059C68A46DBE6" + "_2B9CF255BD67578217BF36A742BD97A5" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:System.Globalization.Extensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\tr\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:System.Globalization.Extensions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_088154C203C34BBAB42159624C09C835" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26771,26 +24337,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_385E4C4F5EED8818E2DF6396C14184B2" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2BA3714CA8E54F78954E9579293C3CAB" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.EventLog, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Collections.Concurrent, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_385E4C4F5EED8818E2DF6396C14184B2" + "_2BA3714CA8E54F78954E9579293C3CAB" { - "Name" = "8:System.Diagnostics.EventLog.dll" + "Name" = "8:System.Collections.Concurrent.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Diagnostics.EventLog.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Collections.Concurrent.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26802,26 +24368,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_38B33ECD4A0F4FDF8407B1FC67E626FA" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2C86D93FF6F2A8D550A353E689A42D66" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_38B33ECD4A0F4FDF8407B1FC67E626FA" + "_2C86D93FF6F2A8D550A353E689A42D66" { - "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" + "Name" = "8:System.Runtime.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\es\\System.Windows.Controls.Ribbon.resources.dll" + "SourcePath" = "8:System.Runtime.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_319F794A01F24DA7B010B84BF5746B1F" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26833,26 +24399,15 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_38F70C23CF919177A4ED34A340D64FFE" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2D1C062B85DD4AEC91C54C1F31BC31A2" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Algorithms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_38F70C23CF919177A4ED34A340D64FFE" - { - "Name" = "8:System.Security.Cryptography.Algorithms.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Cryptography.Algorithms.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Database.ini" + "TargetName" = "8:Database.ini" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26864,26 +24419,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_39439E13605746F7977562D5DC45011B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2D703D824988419B9F04D1B09DE37026" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Globalization.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_39439E13605746F7977562D5DC45011B" + "_2D703D824988419B9F04D1B09DE37026" { - "Name" = "8:WindowsBase.resources.dll" + "Name" = "8:System.Globalization.Extensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ko\\WindowsBase.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Globalization.Extensions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_CB3BE22960A44DC39C9AA84ABE16E22A" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26898,23 +24453,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3A43E488F1DB4702B7656E80EE56C91A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2DC66B6B0ADA43EA9D508F2B6E62C1E8" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.AppContext, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading.Tasks.Dataflow, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3A43E488F1DB4702B7656E80EE56C91A" + "_2DC66B6B0ADA43EA9D508F2B6E62C1E8" { - "Name" = "8:System.AppContext.dll" + "Name" = "8:System.Threading.Tasks.Dataflow.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.AppContext.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Threading.Tasks.Dataflow.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26929,23 +24484,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3A446A1DFE2144A7907EDFAD418ED766" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2E19CF28D9950189E4EFF269041F0FD8" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Reflection.Emit, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3A446A1DFE2144A7907EDFAD418ED766" + "_2E19CF28D9950189E4EFF269041F0FD8" { - "Name" = "8:PresentationFramework.resources.dll" + "Name" = "8:System.Reflection.Emit.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ru\\PresentationFramework.resources.dll" + "SourcePath" = "8:System.Reflection.Emit.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F050AFEC75CD404984C24AA71672DBCD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26957,26 +24512,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3A63E9B6336859FB898A1207E36A64D2" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2E3D5B68BF234E6BA1C15D82AE4873E0" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Console, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3A63E9B6336859FB898A1207E36A64D2" + "_2E3D5B68BF234E6BA1C15D82AE4873E0" { - "Name" = "8:System.Console.dll" + "Name" = "8:UIAutomationClientSideProviders.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Console.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pl\\UIAutomationClientSideProviders.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_C688DABCFD5B492EB58182172839DAB4" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -26988,26 +24543,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3AF27C2F3C6F5550735A7366B1261EFF" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2E5120DFA2DA41889A6CC3FDA938E4E9" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Tasks.Parallel, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3AF27C2F3C6F5550735A7366B1261EFF" + "_2E5120DFA2DA41889A6CC3FDA938E4E9" { - "Name" = "8:System.Threading.Tasks.Parallel.dll" + "Name" = "8:PresentationCore.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Threading.Tasks.Parallel.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hans\\PresentationCore.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_76359F5BF5894CC19460472A07F40277" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27019,26 +24574,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3AFF9A368102408C91046427F4596A4D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2E719C1428664833BCA5D9B8CBFA6C93" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3AFF9A368102408C91046427F4596A4D" + "_2E719C1428664833BCA5D9B8CBFA6C93" { - "Name" = "8:PresentationUI.resources.dll" + "Name" = "8:UIAutomationClientSideProviders.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pl\\PresentationUI.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\es\\UIAutomationClientSideProviders.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33ECECC7E762456A9E89108B3C562998" + "Folder" = "8:_50D95BB66E0E4F02ABA1951CD4EE263F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27053,23 +24608,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3B03D582CA5E4ABBA90B5BED06BEBA30" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2FAAED2D751A4742B837AE38C9F6885A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3B03D582CA5E4ABBA90B5BED06BEBA30" + "_2FAAED2D751A4742B837AE38C9F6885A" { - "Name" = "8:System.Xaml.resources.dll" + "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ko\\System.Xaml.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\it\\System.Windows.Controls.Ribbon.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_CB3BE22960A44DC39C9AA84ABE16E22A" + "Folder" = "8:_154C18835E314DCA89F39AA7646FFC12" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27084,23 +24639,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3B436E4817B84B349458AFA6EBD18FE3" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3101F9AFF87F4586C5C12A29FB502D79" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading.Tasks.Dataflow, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3B436E4817B84B349458AFA6EBD18FE3" + "_3101F9AFF87F4586C5C12A29FB502D79" { - "Name" = "8:System.Data.dll" + "Name" = "8:System.Threading.Tasks.Dataflow.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Data.dll" + "SourcePath" = "8:System.Threading.Tasks.Dataflow.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27112,26 +24667,15 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3B678EA0E9FA4D20B7D90D75DCAF300C" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3110749E23564FDF8A063A1C160DDA82" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.Aero, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" - "ScatterAssemblies" - { - "_3B678EA0E9FA4D20B7D90D75DCAF300C" - { - "Name" = "8:PresentationFramework.Aero.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\PresentationFramework.Aero.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\publish\\setup-win-x64\\msquic.dll" + "TargetName" = "8:msquic.dll" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27146,23 +24690,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3B72D4DBB2DB48BFAD0801684500E08D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3135B425C03D41748F6CFB3D756EB9E9" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Ports, Version=9.0.0.10, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3B72D4DBB2DB48BFAD0801684500E08D" + "_3135B425C03D41748F6CFB3D756EB9E9" { - "Name" = "8:System.IO.Ports.dll" + "Name" = "8:System.Windows.Input.Manipulations.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.Ports.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\it\\System.Windows.Input.Manipulations.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_154C18835E314DCA89F39AA7646FFC12" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27177,23 +24721,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3BF227CEFB4A48A292BD5331AEEAB6B9" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_31365292EB0A4C64A977C3FF80BE8D9C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading.ThreadPool, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3BF227CEFB4A48A292BD5331AEEAB6B9" + "_31365292EB0A4C64A977C3FF80BE8D9C" { - "Name" = "8:System.Runtime.Serialization.dll" + "Name" = "8:System.Threading.ThreadPool.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Runtime.Serialization.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Threading.ThreadPool.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27208,23 +24752,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3C53BF2D2D5C4504A0EE9A85F5A5DA8D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_31FC7F597776489A8F43E32E24F93BE5" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.RuntimeInformation, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3C53BF2D2D5C4504A0EE9A85F5A5DA8D" + "_31FC7F597776489A8F43E32E24F93BE5" { - "Name" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" + "Name" = "8:PresentationUI.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Runtime.InteropServices.RuntimeInformation.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hans\\PresentationUI.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_76359F5BF5894CC19460472A07F40277" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27239,23 +24783,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3CFD50619890440D8E99A14272FA50D8" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_32EF223E0EFB40A88EBE556C8EAA4AF3" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.ThreadPool, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.WebClient, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3CFD50619890440D8E99A14272FA50D8" + "_32EF223E0EFB40A88EBE556C8EAA4AF3" { - "Name" = "8:System.Threading.ThreadPool.dll" + "Name" = "8:System.Net.WebClient.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Threading.ThreadPool.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.WebClient.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27270,23 +24814,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3D0690A621DC4F51914705AAA34C0E81" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_32F0360562E0F4E46ECF81F6FFE26EC6" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Web.HttpUtility, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3D0690A621DC4F51914705AAA34C0E81" + "_32F0360562E0F4E46ECF81F6FFE26EC6" { - "Name" = "8:ReachFramework.resources.dll" + "Name" = "8:System.Web.HttpUtility.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\it\\ReachFramework.resources.dll" + "SourcePath" = "8:System.Web.HttpUtility.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33866903D6804194A4096F8D1E34C9F3" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27298,26 +24842,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3E7D8C7B55035D5CAD163D66E6F54929" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_342A6CE3EF5E8C5170AA6C400613FF5B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.EventBasedAsync, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3E7D8C7B55035D5CAD163D66E6F54929" + "_342A6CE3EF5E8C5170AA6C400613FF5B" { - "Name" = "8:System.ComponentModel.EventBasedAsync.dll" + "Name" = "8:System.Runtime.Serialization.Json.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.ComponentModel.EventBasedAsync.dll" + "SourcePath" = "8:System.Runtime.Serialization.Json.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27332,23 +24876,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3E941E8EA87F158B58927EE85FAC5BD4" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_344F4EFB09664C2786E9B62FDFEFD8A9" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tracing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:Microsoft.Win32.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3E941E8EA87F158B58927EE85FAC5BD4" + "_344F4EFB09664C2786E9B62FDFEFD8A9" { - "Name" = "8:System.Diagnostics.Tracing.dll" + "Name" = "8:Microsoft.Win32.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Diagnostics.Tracing.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.Win32.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27360,26 +24904,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3EE7A6E2334245A7A0DA54A8367AC9FD" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_35037DF8DE6149C18293212108B27384" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Caching.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3EE7A6E2334245A7A0DA54A8367AC9FD" + "_35037DF8DE6149C18293212108B27384" { - "Name" = "8:ReachFramework.resources.dll" + "Name" = "8:Microsoft.Extensions.Caching.Abstractions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pt-BR\\ReachFramework.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.Extensions.Caching.Abstractions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_9A8437D0ADE7402E8451ABF67C350698" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27394,23 +24938,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3EF2B71DFA0287A135EC6D2EED20D989" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_35F2A45F8E194D1CA2ED585BD8A95B75" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.DriveInfo, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3EF2B71DFA0287A135EC6D2EED20D989" + "_35F2A45F8E194D1CA2ED585BD8A95B75" { - "Name" = "8:System.IO.FileSystem.DriveInfo.dll" + "Name" = "8:PresentationCore.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.FileSystem.DriveInfo.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ja\\PresentationCore.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_EF49A53A2F124808B6DA2E203BD36641" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27422,26 +24966,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3F5BF7D569384596BF6FC701EFFECDF1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_368297E8E6732BD28622CB59EE965020" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ValueTuple, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Collections.Specialized, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3F5BF7D569384596BF6FC701EFFECDF1" + "_368297E8E6732BD28622CB59EE965020" { - "Name" = "8:System.ValueTuple.dll" + "Name" = "8:System.Collections.Specialized.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.ValueTuple.dll" + "SourcePath" = "8:System.Collections.Specialized.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27453,26 +24997,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3F7F9B04DCFE498FB90F10FD533E50C8" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_37F9CA373D6B44C58DD3134FB9A6FD98" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ObjectModel, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3F7F9B04DCFE498FB90F10FD533E50C8" + "_37F9CA373D6B44C58DD3134FB9A6FD98" { - "Name" = "8:System.ObjectModel.dll" + "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.ObjectModel.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\tr\\System.Windows.Controls.Ribbon.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_D14333D71D9548B993E7562D7B181D97" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27487,23 +25031,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3F8E8241EDFCEA59F73D5CF96B6C5177" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_380884DD2753A301C82737899E085AE4" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Security.SecureString, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Net.ServicePoint, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3F8E8241EDFCEA59F73D5CF96B6C5177" + "_380884DD2753A301C82737899E085AE4" { - "Name" = "8:System.Security.SecureString.dll" + "Name" = "8:System.Net.ServicePoint.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.SecureString.dll" + "SourcePath" = "8:System.Net.ServicePoint.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27518,23 +25062,12 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4046BC6714CD4C6BA6590D5B36FA1EE6" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_38F6E660F60B4F72B6375EF6F3FD0E9A" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_4046BC6714CD4C6BA6590D5B36FA1EE6" - { - "Name" = "8:System.IO.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\publish\\setup-win-x64\\wpfgfx_cor3.dll" + "TargetName" = "8:wpfgfx_cor3.dll" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27549,43 +25082,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4086BBE9D491420D9D58094A754D33A6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_39187295040B712CB7D5035C7086FE49" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.JavaScript, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading.Thread, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_4086BBE9D491420D9D58094A754D33A6" + "_39187295040B712CB7D5035C7086FE49" { - "Name" = "8:System.Runtime.InteropServices.JavaScript.dll" + "Name" = "8:System.Threading.Thread.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Runtime.InteropServices.JavaScript.dll" + "SourcePath" = "8:System.Threading.Thread.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_408D9620395D4EB890E166D1EBBD4392" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\linux-musl-arm\\native\\libSystem.IO.Ports.Native.so" - "TargetName" = "8:libSystem.IO.Ports.Native.so" - "Tag" = "8:" - "Folder" = "8:_5CB1342117B642589E8CD9F47E2E9591" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27597,26 +25110,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_40B729EB21D94AA6BB6363FC56BE6BDB" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_392F5B3391E24BC7B8AFB886C9D58F21" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Win32.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Csp, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_40B729EB21D94AA6BB6363FC56BE6BDB" + "_392F5B3391E24BC7B8AFB886C9D58F21" { - "Name" = "8:Microsoft.Win32.Primitives.dll" + "Name" = "8:System.Security.Cryptography.Csp.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.Win32.Primitives.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.Cryptography.Csp.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27631,23 +25144,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_41973C8B8BF14359A8BB5710596C2A00" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_39684D34359849A282ADE8ADFBEE0B4A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Numerics.Vectors, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_41973C8B8BF14359A8BB5710596C2A00" + "_39684D34359849A282ADE8ADFBEE0B4A" { - "Name" = "8:PresentationCore.resources.dll" + "Name" = "8:System.Numerics.Vectors.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\tr\\PresentationCore.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Numerics.Vectors.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F3F3E806FBD0440F983B77DA02BEF5A8" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27662,23 +25175,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_42034B44692647A698F6895DBA9BFCB4" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_39FBC22F5F9A43D38B9E6BB6E9CF27D6" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.Encoding, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_42034B44692647A698F6895DBA9BFCB4" + "_39FBC22F5F9A43D38B9E6BB6E9CF27D6" { - "Name" = "8:System.Text.Encoding.dll" + "Name" = "8:UIAutomationProvider.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Text.Encoding.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\fr\\UIAutomationProvider.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_CAA532AD901F4BF8A56F3FCA4F0F1124" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27693,23 +25206,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_422C98F0CDBF49AD84C6CFD67ABA6017" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3B555F76AB464054B547AC27E6A4B8EB" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_422C98F0CDBF49AD84C6CFD67ABA6017" + "_3B555F76AB464054B547AC27E6A4B8EB" { - "Name" = "8:PresentationUI.resources.dll" + "Name" = "8:WindowsBase.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hans\\PresentationUI.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ko\\WindowsBase.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_A526A21B472242C9B6F4662E9D05A435" + "Folder" = "8:_506EF00DD33D4ECF9B29B8A5A859CE45" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27724,12 +25237,12 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42B0DAF4C2D64377837BDEA4BAEED5FC" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3BC1E078DE134E13918CE032F8DFFCEE" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\mscordaccore_amd64_amd64_9.0.1326.6317.dll" - "TargetName" = "8:mscordaccore_amd64_amd64_9.0.1326.6317.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.DiaSymReader.Native.amd64.dll" + "TargetName" = "8:Microsoft.DiaSymReader.Native.amd64.dll" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27744,43 +25257,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4368D043170E4801BD2C39401C5946CE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3BF61A03D74549DB80701D11312AD464" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_4368D043170E4801BD2C39401C5946CE" + "_3BF61A03D74549DB80701D11312AD464" { - "Name" = "8:UIAutomationTypes.resources.dll" + "Name" = "8:System.Xaml.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\cs\\UIAutomationTypes.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\tr\\System.Xaml.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_39C4141125A7444BAD628B61802AD256" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_43827AD630B446ED9182909E41D8E592" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\maccatalyst-arm64\\native\\libSystem.IO.Ports.Native.dylib" - "TargetName" = "8:libSystem.IO.Ports.Native.dylib" - "Tag" = "8:" - "Folder" = "8:_3075B1F801904C33B9506B2EBB7BADDF" + "Folder" = "8:_D14333D71D9548B993E7562D7B181D97" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27795,23 +25288,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_45E53FB27049D042E5DED373E26F270F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3C74C50A2447FC10944F3AAF2F4D8761" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.RegularExpressions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Reflection, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_45E53FB27049D042E5DED373E26F270F" + "_3C74C50A2447FC10944F3AAF2F4D8761" { - "Name" = "8:System.Text.RegularExpressions.dll" + "Name" = "8:System.Reflection.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Text.RegularExpressions.dll" + "SourcePath" = "8:System.Reflection.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27826,23 +25319,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_46257171A0414AD79483B9977E2FF868" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3C9808B85BF249C491319517E96A5CB3" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=ko, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_46257171A0414AD79483B9977E2FF868" + "_3C9808B85BF249C491319517E96A5CB3" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:UIAutomationTypes.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ko\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hant\\UIAutomationTypes.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_CB3BE22960A44DC39C9AA84ABE16E22A" + "Folder" = "8:_07FEAE190090436A957E9601C38A7170" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27857,23 +25350,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_46B776E2837B4F7CB7E1B8E912C49D00" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3E0A69D2C6C843CA93DE17024F9D4EC6" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Memory.Data, Version=8.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_46B776E2837B4F7CB7E1B8E912C49D00" + "_3E0A69D2C6C843CA93DE17024F9D4EC6" { - "Name" = "8:System.Memory.Data.dll" + "Name" = "8:UIAutomationClientSideProviders.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Memory.Data.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ko\\UIAutomationClientSideProviders.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_506EF00DD33D4ECF9B29B8A5A859CE45" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27888,23 +25381,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_46E2D82F69CA53E5A7535C5CEF01B095" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3E964B9E025440E98E189B782B208B5C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Globalization.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.X509Certificates, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_46E2D82F69CA53E5A7535C5CEF01B095" + "_3E964B9E025440E98E189B782B208B5C" { - "Name" = "8:System.Globalization.Extensions.dll" + "Name" = "8:System.Security.Cryptography.X509Certificates.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Globalization.Extensions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.Cryptography.X509Certificates.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27916,26 +25409,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4727FDB58AE347C2BBB045C8D3422B9C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3F2C5644AA1143A5AC5EE5BC6A79F70D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Overlapped, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_4727FDB58AE347C2BBB045C8D3422B9C" + "_3F2C5644AA1143A5AC5EE5BC6A79F70D" { - "Name" = "8:System.Threading.Overlapped.dll" + "Name" = "8:ReachFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Threading.Overlapped.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\de\\ReachFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_05DBECC2336740CDB09A80EB68B7B14F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27950,23 +25443,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_47A0E1EF51BB4C9DB3A056522E4E57A0" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3F4EC1A21F29FC2FEB667F72396C798B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.JsonWebTokens, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.WebHeaderCollection, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_47A0E1EF51BB4C9DB3A056522E4E57A0" + "_3F4EC1A21F29FC2FEB667F72396C798B" { - "Name" = "8:Microsoft.IdentityModel.JsonWebTokens.dll" + "Name" = "8:System.Net.WebHeaderCollection.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.IdentityModel.JsonWebTokens.dll" + "SourcePath" = "8:System.Net.WebHeaderCollection.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -27978,26 +25471,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4895DB05A2D70B7183EA59B67E777D81" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3F7191903485AE336DDBE8F265888B67" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Caching.Memory, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" "ScatterAssemblies" { - "_4895DB05A2D70B7183EA59B67E777D81" + "_3F7191903485AE336DDBE8F265888B67" { - "Name" = "8:System.Security.Cryptography.dll" + "Name" = "8:Microsoft.Extensions.Caching.Memory.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.Cryptography.dll" + "SourcePath" = "8:Microsoft.Extensions.Caching.Memory.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28012,23 +25505,43 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4987219C388E4B8ABEDB8326ED8C8D7F" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3F7D0CF2346D445E87AB02178B28BB04" + { + "SourcePath" = "8:..\\publish\\setup-win-x64\\hostpolicy.dll" + "TargetName" = "8:hostpolicy.dll" + "Tag" = "8:" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3F8F3AFA18DA43E5857C135FF1EA49DF" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.DriveInfo, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_4987219C388E4B8ABEDB8326ED8C8D7F" + "_3F8F3AFA18DA43E5857C135FF1EA49DF" { - "Name" = "8:System.IO.FileSystem.DriveInfo.dll" + "Name" = "8:System.Windows.Input.Manipulations.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.FileSystem.DriveInfo.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hans\\System.Windows.Input.Manipulations.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_76359F5BF5894CC19460472A07F40277" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28043,23 +25556,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_49F119D04B854F66986DD884302795FE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3FDC59E51DD676E67FAE73192661AC20" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Globalization.Calendars, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Drawing.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_49F119D04B854F66986DD884302795FE" + "_3FDC59E51DD676E67FAE73192661AC20" { - "Name" = "8:System.Globalization.Calendars.dll" + "Name" = "8:System.Drawing.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Globalization.Calendars.dll" + "SourcePath" = "8:System.Drawing.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28071,26 +25584,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4A127626130436A8485B10D9D040C3F8" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_40D4803D1BCB496489B81B9239B44CC9" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Formats.Tar, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xml.XPath.XDocument, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_4A127626130436A8485B10D9D040C3F8" + "_40D4803D1BCB496489B81B9239B44CC9" { - "Name" = "8:System.Formats.Tar.dll" + "Name" = "8:System.Xml.XPath.XDocument.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Formats.Tar.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Xml.XPath.XDocument.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28102,26 +25615,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4AA4654633338AD82BCBCF22F9E71E03" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_40D856E4B63255C97FB18B2EEB03C7C2" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Data.Common, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.IO, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_4AA4654633338AD82BCBCF22F9E71E03" + "_40D856E4B63255C97FB18B2EEB03C7C2" { - "Name" = "8:System.Data.Common.dll" + "Name" = "8:System.IO.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Data.Common.dll" + "SourcePath" = "8:System.IO.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28136,12 +25649,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4AFB41FA8B1F44B68D25AFEB81C64A9A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_41166B47E9DED0CCB5B576735A417525" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Housing.deps.json" - "TargetName" = "8:Housing.deps.json" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_41166B47E9DED0CCB5B576735A417525" + { + "Name" = "8:System.Runtime.InteropServices.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.Runtime.InteropServices.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28153,26 +25677,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4B14C5F18DE24D64A0D03625C2BE1368" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_412C7C7C4A634DEDB9CFACD8617FDEE8" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationUI, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" "ScatterAssemblies" { - "_4B14C5F18DE24D64A0D03625C2BE1368" + "_412C7C7C4A634DEDB9CFACD8617FDEE8" { - "Name" = "8:UIAutomationTypes.resources.dll" + "Name" = "8:PresentationUI.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\it\\UIAutomationTypes.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\PresentationUI.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33866903D6804194A4096F8D1E34C9F3" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28187,23 +25711,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4CB1E56C3B127AC23CED7AB9265058C5" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_427AE465F055A535566FA1FBCEE3948A" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Data.Common, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_4CB1E56C3B127AC23CED7AB9265058C5" + "_427AE465F055A535566FA1FBCEE3948A" { - "Name" = "8:System.Threading.dll" + "Name" = "8:System.Data.Common.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Threading.dll" + "SourcePath" = "8:System.Data.Common.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28218,23 +25742,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4CC3509F71D47443B15941CABB9FB245" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_439160081B2C4D7FB4B688D7EC512765" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.OpenSsl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_4CC3509F71D47443B15941CABB9FB245" + "_439160081B2C4D7FB4B688D7EC512765" { - "Name" = "8:System.Security.Cryptography.OpenSsl.dll" + "Name" = "8:PresentationUI.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.Cryptography.OpenSsl.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ja\\PresentationUI.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_EF49A53A2F124808B6DA2E203BD36641" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28246,15 +25770,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4CDD7E2403B046F7AE083ED1B9653A92" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_43BCD1D58AC6473D81AD981399490F29" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Database.ini" - "TargetName" = "8:Database.ini" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_43BCD1D58AC6473D81AD981399490F29" + { + "Name" = "8:PresentationFramework.resources.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\es\\PresentationFramework.resources.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_50D95BB66E0E4F02ABA1951CD4EE263F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28269,23 +25804,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4D439AE642BD42B88299558FBF3E2817" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_444419ADD92D4E62986B8F8F006A3408" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=pl, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_4D439AE642BD42B88299558FBF3E2817" + "_444419ADD92D4E62986B8F8F006A3408" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:System.Xaml.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\pl\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\es\\System.Xaml.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_361F2C8E9B774B959F3E2ADCF4423839" + "Folder" = "8:_50D95BB66E0E4F02ABA1951CD4EE263F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28300,23 +25835,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4DFC695831944FBBA7AC0DE65E7FC634" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_44B6C4F217E64B8680113DF51E0B5C55" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xml.XmlSerializer, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_4DFC695831944FBBA7AC0DE65E7FC634" + "_44B6C4F217E64B8680113DF51E0B5C55" { - "Name" = "8:PresentationFramework.resources.dll" + "Name" = "8:System.Xml.XmlSerializer.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\tr\\PresentationFramework.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Xml.XmlSerializer.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F3F3E806FBD0440F983B77DA02BEF5A8" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28331,23 +25866,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4E68D8E505060343C9C98DD4F77B2A9C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_46364AC2527B05575C1A7DC2C4A003FE" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.TypeExtensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Text.Encodings.Web, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_4E68D8E505060343C9C98DD4F77B2A9C" + "_46364AC2527B05575C1A7DC2C4A003FE" { - "Name" = "8:System.Reflection.TypeExtensions.dll" + "Name" = "8:System.Text.Encodings.Web.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Reflection.TypeExtensions.dll" + "SourcePath" = "8:System.Text.Encodings.Web.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28362,23 +25897,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4FCB833B11C64C0D85C46B127B6B1116" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4645D74306021CA44B3BA60D952E935A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Memory.Data, Version=8.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_4FCB833B11C64C0D85C46B127B6B1116" + "_4645D74306021CA44B3BA60D952E935A" { - "Name" = "8:PresentationFramework.resources.dll" + "Name" = "8:System.Memory.Data.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\cs\\PresentationFramework.resources.dll" + "SourcePath" = "8:System.Memory.Data.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_39C4141125A7444BAD628B61802AD256" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28390,26 +25925,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_50799A5D3AB2F77ABC504A9CE0038D64" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_47A1E70B29974E10B8097F103EB4A2D6" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.NameResolution, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_50799A5D3AB2F77ABC504A9CE0038D64" + "_47A1E70B29974E10B8097F103EB4A2D6" { - "Name" = "8:System.Net.NameResolution.dll" + "Name" = "8:System.Windows.Input.Manipulations.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.NameResolution.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\cs\\System.Windows.Input.Manipulations.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_7901A3B17F9447C3A81D55DC5033828B" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28421,26 +25956,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_50AA9E5F36F34BE58C0500BCD3665E0A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_483D147777EFA8C37B8D462BA94687D7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading.ThreadPool, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_50AA9E5F36F34BE58C0500BCD3665E0A" + "_483D147777EFA8C37B8D462BA94687D7" { - "Name" = "8:WindowsBase.resources.dll" + "Name" = "8:System.Threading.ThreadPool.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\tr\\WindowsBase.resources.dll" + "SourcePath" = "8:System.Threading.ThreadPool.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F3F3E806FBD0440F983B77DA02BEF5A8" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28452,15 +25987,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_50B768B640B54F9C87DE06C489CA91BE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_489053C2C7E64A8EB7E695C24674C475" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\init.sql" - "TargetName" = "8:init.sql" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_489053C2C7E64A8EB7E695C24674C475" + { + "Name" = "8:UIAutomationClient.resources.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hans\\UIAutomationClient.resources.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_76359F5BF5894CC19460472A07F40277" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28475,23 +26021,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_513F47F07D3B44E7BCCD46CFDC2A729A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_48FEC7295A1F49AFA9658B28040D82D0" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=ja, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Principal.Windows, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_513F47F07D3B44E7BCCD46CFDC2A729A" + "_48FEC7295A1F49AFA9658B28040D82D0" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:System.Security.Principal.Windows.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\ja\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.Principal.Windows.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_00F44C30CA9A41ACACEB801AAAB3459F" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28506,23 +26052,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_51C4B66AB9DF4631B45CE94538C8AD11" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_49646FD418844A059636F991913C7428" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_51C4B66AB9DF4631B45CE94538C8AD11" + "_49646FD418844A059636F991913C7428" { - "Name" = "8:PresentationFramework.resources.dll" + "Name" = "8:Microsoft.VisualBasic.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ko\\PresentationFramework.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.VisualBasic.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_CB3BE22960A44DC39C9AA84ABE16E22A" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28537,23 +26083,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_51CCC9AC96B14C59B08BCD4ABF521989" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_498D4F9B9ACC450EBF5E5D239FA1A0C0" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Memory, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_51CCC9AC96B14C59B08BCD4ABF521989" + "_498D4F9B9ACC450EBF5E5D239FA1A0C0" { - "Name" = "8:System.Memory.dll" + "Name" = "8:UIAutomationTypes.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Memory.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hans\\UIAutomationTypes.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_76359F5BF5894CC19460472A07F40277" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28568,23 +26114,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_51F415BDB36E45D0A4BD1F1EE34F9523" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_49BFB19D16A24DE78D3C67899AE263D6" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=zh-Hans, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_51F415BDB36E45D0A4BD1F1EE34F9523" + "_49BFB19D16A24DE78D3C67899AE263D6" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:UIAutomationClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\zh-Hans\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pl\\UIAutomationClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_3431D8A1B6884D34A997F6312D509ADD" + "Folder" = "8:_C688DABCFD5B492EB58182172839DAB4" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28599,23 +26145,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_51F4D594D73E477E856528EBC42B0F9D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4AA45544318FAE6B23403F8280F2F677" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.WebSockets, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.RuntimeInformation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_51F4D594D73E477E856528EBC42B0F9D" + "_4AA45544318FAE6B23403F8280F2F677" { - "Name" = "8:System.Net.WebSockets.dll" + "Name" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.WebSockets.dll" + "SourcePath" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28627,26 +26173,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5202A9413E934ED6AFD77B094AB486D9" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4B4619FA9E87412183EAD43D28224716" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ValueTuple, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5202A9413E934ED6AFD77B094AB486D9" + "_4B4619FA9E87412183EAD43D28224716" { - "Name" = "8:UIAutomationClientSideProviders.resources.dll" + "Name" = "8:System.ValueTuple.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\cs\\UIAutomationClientSideProviders.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.ValueTuple.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_39C4141125A7444BAD628B61802AD256" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28661,12 +26207,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_52DBD1213F3347B397FF02C837E70E3D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4B8414E123E23CEF0A1536322F0ECAE2" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\coreclr.dll" - "TargetName" = "8:coreclr.dll" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Formatters, Version=8.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_4B8414E123E23CEF0A1536322F0ECAE2" + { + "Name" = "8:System.Runtime.Serialization.Formatters.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.Runtime.Serialization.Formatters.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28678,26 +26235,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_53C949C71D0F422B8978AD416438B086" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4BA0772E1F5B47EE9DA191683D222745" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Caching.Memory, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.JavaScript, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_53C949C71D0F422B8978AD416438B086" + "_4BA0772E1F5B47EE9DA191683D222745" { - "Name" = "8:Microsoft.Extensions.Caching.Memory.dll" + "Name" = "8:System.Runtime.InteropServices.JavaScript.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.Extensions.Caching.Memory.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Runtime.InteropServices.JavaScript.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28712,23 +26269,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_544D1ECC5CBCC852A9C47AE5139F6399" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4BC9CD649C175DEADD4B1DEEC6E3E6A0" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Metadata, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Text.Encoding.CodePages, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_544D1ECC5CBCC852A9C47AE5139F6399" + "_4BC9CD649C175DEADD4B1DEEC6E3E6A0" { - "Name" = "8:System.Reflection.Metadata.dll" + "Name" = "8:System.Text.Encoding.CodePages.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Reflection.Metadata.dll" + "SourcePath" = "8:System.Text.Encoding.CodePages.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28743,23 +26300,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_550899349AF445AFB2CA10B0FBD96D87" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4BE84EA27B5340128C46B9FF78B2828B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=pt-BR, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" "ScatterAssemblies" { - "_550899349AF445AFB2CA10B0FBD96D87" + "_4BE84EA27B5340128C46B9FF78B2828B" { "Name" = "8:Microsoft.Data.SqlClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pt-BR\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pt-BR\\Microsoft.Data.SqlClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_9A8437D0ADE7402E8451ABF67C350698" + "Folder" = "8:_FE1199FD2AED473F9607036466985701" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28774,23 +26331,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_55842097A1B740A79E6644F235B0C1AF" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4C2D7B63D1124D4BB0DB0BE0EECF61FB" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Ping, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_55842097A1B740A79E6644F235B0C1AF" + "_4C2D7B63D1124D4BB0DB0BE0EECF61FB" { - "Name" = "8:System.Net.Ping.dll" + "Name" = "8:PresentationUI.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.Ping.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ru\\PresentationUI.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_3A07FF1E066342A19AABED2888E683D3" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28805,12 +26362,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5735053D84994EFCB7E1065BC1CAB45B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4C99FF29AB44757872B36197C8BF3C52" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\win-arm64\\native\\Microsoft.Data.SqlClient.SNI.dll" - "TargetName" = "8:Microsoft.Data.SqlClient.SNI.dll" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Configuration.ConfigurationManager, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_4C99FF29AB44757872B36197C8BF3C52" + { + "Name" = "8:System.Configuration.ConfigurationManager.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.Configuration.ConfigurationManager.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F9EE4AFEBF0B4EDC8303DF983A7FBB91" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28822,26 +26390,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5744E08CC8864EE98D3F0F279C96FC95" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4D4C37D93E3B414C8FE99DBB8E48FBB6" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5744E08CC8864EE98D3F0F279C96FC95" + "_4D4C37D93E3B414C8FE99DBB8E48FBB6" { - "Name" = "8:ReachFramework.resources.dll" + "Name" = "8:System.Security.Cryptography.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\de\\ReachFramework.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.Cryptography.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_8C6BAC487E12445AAC4169B115BE8835" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28856,23 +26424,54 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_575A4036805E4C2489F6706A5C20D3E9" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4D87719995DCEF2E9313F8B3B95B7274" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_575A4036805E4C2489F6706A5C20D3E9" + "_4D87719995DCEF2E9313F8B3B95B7274" { - "Name" = "8:System.Xaml.resources.dll" + "Name" = "8:System.IO.FileSystem.Primitives.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.IO.FileSystem.Primitives.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4DE2F6B4CB1240B9857D92FE0E351063" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Xml.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_4DE2F6B4CB1240B9857D92FE0E351063" + { + "Name" = "8:System.Xml.Serialization.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hant\\System.Xaml.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Xml.Serialization.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_FFD6EAF1B3444345AC6B6F35CA58BF38" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28887,23 +26486,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_57D15A45939740A0ACB702A40DCE5CA0" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4E05FFBA65CF4791A30C1FA9F5B7C8C5" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.CompilerServices.VisualC, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading.AccessControl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_57D15A45939740A0ACB702A40DCE5CA0" + "_4E05FFBA65CF4791A30C1FA9F5B7C8C5" { - "Name" = "8:System.Runtime.CompilerServices.VisualC.dll" + "Name" = "8:System.Threading.AccessControl.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Runtime.CompilerServices.VisualC.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Threading.AccessControl.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28918,23 +26517,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_57EAA6DC10DDCE02971C5049BFAF54A3" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4E2528B097824D5F9915F870179C3668" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Reflection.Emit, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_57EAA6DC10DDCE02971C5049BFAF54A3" + "_4E2528B097824D5F9915F870179C3668" { - "Name" = "8:System.Runtime.InteropServices.dll" + "Name" = "8:System.Reflection.Emit.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.InteropServices.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Reflection.Emit.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28946,26 +26545,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5801281F80DB41C8AA12AAC9A21BBF9E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4E8909C2671C4FEBAE2D9D055E7DBF01" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5801281F80DB41C8AA12AAC9A21BBF9E" + "_4E8909C2671C4FEBAE2D9D055E7DBF01" { - "Name" = "8:Microsoft.VisualBasic.dll" + "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.VisualBasic.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ru\\System.Windows.Controls.Ribbon.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_3A07FF1E066342A19AABED2888E683D3" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -28980,23 +26579,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5833E4D0F48E946AFFDACE1B745CF3F2" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4EB2192CC00FB0EB1C5133471260033C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Loader, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Pkcs, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5833E4D0F48E946AFFDACE1B745CF3F2" + "_4EB2192CC00FB0EB1C5133471260033C" { - "Name" = "8:System.Runtime.Loader.dll" + "Name" = "8:System.Security.Cryptography.Pkcs.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.Loader.dll" + "SourcePath" = "8:System.Security.Cryptography.Pkcs.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29011,23 +26610,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_584488BE0E5B42448B64AEB8295E6216" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4F2ACE4162684790B7EFC482F383A426" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Resources.ResourceManager, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_584488BE0E5B42448B64AEB8295E6216" + "_4F2ACE4162684790B7EFC482F383A426" { - "Name" = "8:System.Resources.ResourceManager.dll" + "Name" = "8:UIAutomationClientSideProviders.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Resources.ResourceManager.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\cs\\UIAutomationClientSideProviders.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_7901A3B17F9447C3A81D55DC5033828B" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29042,23 +26641,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_588842B28A75F1BD35C5CDDBB0F123D6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4F2FA84345B8495CBA758099FE43BE26" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.DispatchProxy, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_588842B28A75F1BD35C5CDDBB0F123D6" + "_4F2FA84345B8495CBA758099FE43BE26" { - "Name" = "8:System.Reflection.DispatchProxy.dll" + "Name" = "8:ReachFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Reflection.DispatchProxy.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\fr\\ReachFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_CAA532AD901F4BF8A56F3FCA4F0F1124" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29070,15 +26669,15 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59AD0C55DE794E3594215CCA3509CFA7" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4F7A58248FC345C3A5412F9596FCF95C" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.Compression.Native.dll" - "TargetName" = "8:System.IO.Compression.Native.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\clrgc.dll" + "TargetName" = "8:clrgc.dll" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29093,23 +26692,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_59E9FDC913F34D1FA5C8E2F066ABD4C6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_502E07D98F7D41258B90D0C4E6534AC9" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IdentityModel.Tokens.Jwt, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_59E9FDC913F34D1FA5C8E2F066ABD4C6" + "_502E07D98F7D41258B90D0C4E6534AC9" { - "Name" = "8:System.IdentityModel.Tokens.Jwt.dll" + "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\System.IdentityModel.Tokens.Jwt.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\de\\System.Windows.Controls.Ribbon.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_05DBECC2336740CDB09A80EB68B7B14F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29124,23 +26723,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5A3B9691BBA0905D20072B75D246E43D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_50306E8DAC38471AAB28C2754B9E6124" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.Encoding.CodePages, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=de, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5A3B9691BBA0905D20072B75D246E43D" + "_50306E8DAC38471AAB28C2754B9E6124" { - "Name" = "8:System.Text.Encoding.CodePages.dll" + "Name" = "8:Microsoft.Data.SqlClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Text.Encoding.CodePages.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\de\\Microsoft.Data.SqlClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_05DBECC2336740CDB09A80EB68B7B14F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29152,26 +26751,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5B31A4E8F126425BA1A42D99C31B8454" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_504E92556FF74DC6857BCBBB97FB7EB8" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.CSharp, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5B31A4E8F126425BA1A42D99C31B8454" + "_504E92556FF74DC6857BCBBB97FB7EB8" { - "Name" = "8:System.Runtime.InteropServices.dll" + "Name" = "8:Microsoft.CSharp.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Runtime.InteropServices.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.CSharp.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29186,23 +26785,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5B33C61F5CC73F6B67F7641FDCA19E32" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_50D0E5D4B849442E8FEAA043126CE608" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.WebSockets.Client, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5B33C61F5CC73F6B67F7641FDCA19E32" + "_50D0E5D4B849442E8FEAA043126CE608" { - "Name" = "8:System.Net.WebSockets.Client.dll" + "Name" = "8:ReachFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.WebSockets.Client.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ko\\ReachFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_506EF00DD33D4ECF9B29B8A5A859CE45" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29214,26 +26813,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5B3E026DD33A40C1A7EDC39A74BF1FA1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_515A8CFB844E4B618CB13EC19A0FE75C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Console, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework.Aero, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" "ScatterAssemblies" { - "_5B3E026DD33A40C1A7EDC39A74BF1FA1" + "_515A8CFB844E4B618CB13EC19A0FE75C" { - "Name" = "8:System.Console.dll" + "Name" = "8:PresentationFramework.Aero.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Console.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\PresentationFramework.Aero.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29248,12 +26847,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5B470822B6EA4B47B25809D8F8B2623B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5193F4E9C8FD027F6DA8742BC80C4D34" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\win-x86\\native\\Microsoft.Data.SqlClient.SNI.dll" - "TargetName" = "8:Microsoft.Data.SqlClient.SNI.dll" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Linq.Parallel, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_5193F4E9C8FD027F6DA8742BC80C4D34" + { + "Name" = "8:System.Linq.Parallel.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.Linq.Parallel.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_BA2A9005EF164EFF8CDA6E4C91C48566" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29265,26 +26875,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5B4C60C6EEFA40C7B393BB1299DF2536" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_522E9A0AA15C4225890A6A012B67D68E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Resources.Reader, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5B4C60C6EEFA40C7B393BB1299DF2536" + "_522E9A0AA15C4225890A6A012B67D68E" { - "Name" = "8:UIAutomationClient.resources.dll" + "Name" = "8:System.Resources.Reader.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ko\\UIAutomationClient.resources.dll" + "SourcePath" = "8:System.Resources.Reader.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_CB3BE22960A44DC39C9AA84ABE16E22A" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29296,26 +26906,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5B6F8058482CBAB6EDE2388612B42198" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_527B1D31420E4B23B111E4FC4C7D4DB3" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Protocols.OpenIdConnect, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Logging, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5B6F8058482CBAB6EDE2388612B42198" + "_527B1D31420E4B23B111E4FC4C7D4DB3" { - "Name" = "8:Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" + "Name" = "8:Microsoft.IdentityModel.Logging.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.IdentityModel.Logging.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29327,26 +26937,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5B852E420FAF4CC99F72BCEC55D0342E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_527DEAD8AE7E4E8E99348D277DDC3AD3" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.WebHeaderCollection, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Claims, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5B852E420FAF4CC99F72BCEC55D0342E" + "_527DEAD8AE7E4E8E99348D277DDC3AD3" { - "Name" = "8:System.Net.WebHeaderCollection.dll" + "Name" = "8:System.Security.Claims.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.WebHeaderCollection.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.Claims.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29361,23 +26971,12 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5B9E3DEC263DB384D2E4044422BBD36F" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5282B06E94F64DAF9ED82C9558A5BDDB" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Xml, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_5B9E3DEC263DB384D2E4044422BBD36F" - { - "Name" = "8:System.Runtime.Serialization.Xml.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.Serialization.Xml.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\publish\\setup-win-x64\\clrjit.dll" + "TargetName" = "8:clrjit.dll" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29389,26 +26988,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5C2FC8A37C274E7BB533C6F20E4E42B5" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_532344DBAAF142C2AFF7F262E5522497" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Compression.Brotli, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5C2FC8A37C274E7BB533C6F20E4E42B5" + "_532344DBAAF142C2AFF7F262E5522497" { - "Name" = "8:WindowsBase.resources.dll" + "Name" = "8:System.IO.Compression.Brotli.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pt-BR\\WindowsBase.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.Compression.Brotli.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_9A8437D0ADE7402E8451ABF67C350698" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29423,23 +27022,12 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5C7248F3FB9C4BC08BC60F647CF92413" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53F3D33A66FC450C9DE75E9D9BFBA54A" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Win32.Registry.AccessControl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_5C7248F3FB9C4BC08BC60F647CF92413" - { - "Name" = "8:Microsoft.Win32.Registry.AccessControl.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.Win32.Registry.AccessControl.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\publish\\setup-win-x64\\coreclr.dll" + "TargetName" = "8:coreclr.dll" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29454,23 +27042,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5CBF95F1E41B470A8B930A9DBE8F1356" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_54BF7061F9C747AC8812765DBF13E4FC" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xml.XmlDocument, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5CBF95F1E41B470A8B930A9DBE8F1356" + "_54BF7061F9C747AC8812765DBF13E4FC" { - "Name" = "8:System.Xaml.resources.dll" + "Name" = "8:System.Xml.XmlDocument.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pt-BR\\System.Xaml.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Xml.XmlDocument.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_9A8437D0ADE7402E8451ABF67C350698" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29485,23 +27073,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5CC8DF7128C49B8D92F54987837BE0D6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_557A36316CC1A43CEFC65FDF1FB75164" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.IsolatedStorage, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.Process, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5CC8DF7128C49B8D92F54987837BE0D6" + "_557A36316CC1A43CEFC65FDF1FB75164" { - "Name" = "8:System.IO.IsolatedStorage.dll" + "Name" = "8:System.Diagnostics.Process.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.IsolatedStorage.dll" + "SourcePath" = "8:System.Diagnostics.Process.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29516,23 +27104,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5D01B927B9EF45109391F9A863CC0564" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5581E2113E30ABF56B928CC74B23EE36" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xaml, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Reflection.Metadata, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5D01B927B9EF45109391F9A863CC0564" + "_5581E2113E30ABF56B928CC74B23EE36" { - "Name" = "8:System.Xaml.dll" + "Name" = "8:System.Reflection.Metadata.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Xaml.dll" + "SourcePath" = "8:System.Reflection.Metadata.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29544,26 +27132,15 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5D2A8D17730443A78B5C1B404BCB0FFF" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_55C08B3E075E46E0B8A1523FFDF06AD8" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ClientModel, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_5D2A8D17730443A78B5C1B404BCB0FFF" - { - "Name" = "8:System.ClientModel.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.ClientModel.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\publish\\setup-win-x64\\PresentationNative_cor3.dll" + "TargetName" = "8:PresentationNative_cor3.dll" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29578,23 +27155,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5D7C213BB876991F90D99766421A9C5B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_55EFD5C9477B4C7EA11F78E3928B0DC7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.AppContext, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Protocols.OpenIdConnect, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5D7C213BB876991F90D99766421A9C5B" + "_55EFD5C9477B4C7EA11F78E3928B0DC7" { - "Name" = "8:System.AppContext.dll" + "Name" = "8:Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.AppContext.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29606,26 +27183,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5DECA8430E15A27DB07E2F19865BE42D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_55F146ECD4904D29B3661881E3DD89FB" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression.Brotli, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Configuration.ConfigurationManager, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5DECA8430E15A27DB07E2F19865BE42D" + "_55F146ECD4904D29B3661881E3DD89FB" { - "Name" = "8:System.IO.Compression.Brotli.dll" + "Name" = "8:System.Configuration.ConfigurationManager.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.Compression.Brotli.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Configuration.ConfigurationManager.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29637,15 +27214,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5EB9F74BDD76465C91F7EDBCFEE088CB" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_55F9FC11F41F4C3EBF98220500974FBF" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\android-arm\\native\\libSystem.IO.Ports.Native.so" - "TargetName" = "8:libSystem.IO.Ports.Native.so" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Text.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_55F9FC11F41F4C3EBF98220500974FBF" + { + "Name" = "8:System.Text.Json.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Text.Json.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F13F59C46A3241FE8AAAAE24AED266B7" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29660,23 +27248,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5F082BC1113FF660F20E98CE2AC3095D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_56340E8817D0425AA6F13E35C99A2EF1" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.MemoryMappedFiles, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Linq, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5F082BC1113FF660F20E98CE2AC3095D" + "_56340E8817D0425AA6F13E35C99A2EF1" { - "Name" = "8:System.IO.MemoryMappedFiles.dll" + "Name" = "8:System.Linq.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.MemoryMappedFiles.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Linq.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29688,15 +27276,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5F651DF451624464BE927B73A1884CFA" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_566D8126C1244DEB8E50968F76E754C4" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Housing.exe" - "TargetName" = "8:Housing.exe" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_566D8126C1244DEB8E50968F76E754C4" + { + "Name" = "8:UIAutomationProvider.resources.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hans\\UIAutomationProvider.resources.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_76359F5BF5894CC19460472A07F40277" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29711,23 +27310,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5F8961CAF53A17A41F9EE6D7C710F30B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_57196EE3DC5D4680BFF12E73B0BFA07F" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Globalization, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5F8961CAF53A17A41F9EE6D7C710F30B" + "_57196EE3DC5D4680BFF12E73B0BFA07F" { - "Name" = "8:System.Globalization.dll" + "Name" = "8:System.Windows.Input.Manipulations.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Globalization.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pt-BR\\System.Windows.Input.Manipulations.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_FE1199FD2AED473F9607036466985701" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29739,26 +27338,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_60307A9582FE2D7618125043293A02AB" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5753B720062CAD52F12B916125947BE1" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Caching.Memory, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Cng, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_60307A9582FE2D7618125043293A02AB" + "_5753B720062CAD52F12B916125947BE1" { - "Name" = "8:Microsoft.Extensions.Caching.Memory.dll" + "Name" = "8:System.Security.Cryptography.Cng.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.Extensions.Caching.Memory.dll" + "SourcePath" = "8:System.Security.Cryptography.Cng.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29773,43 +27372,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_605BE8A0427948D6B90C492E1BD29A76" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_57C31C2439A34DC987398DE7F6C5B1E6" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework-SystemXmlLinq, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Collections.Immutable, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_605BE8A0427948D6B90C492E1BD29A76" + "_57C31C2439A34DC987398DE7F6C5B1E6" { - "Name" = "8:PresentationFramework-SystemXmlLinq.dll" + "Name" = "8:System.Collections.Immutable.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\PresentationFramework-SystemXmlLinq.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Collections.Immutable.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_60641ED74ECC45E8BDC4D259BA609E5F" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\mscordbi.dll" - "TargetName" = "8:mscordbi.dll" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29824,23 +27403,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_61849C8C6915542843CBD31931EA4B7D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_57EEA8113CDE38F44305343E63A5EBC8" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Handles, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ClientModel, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" "ScatterAssemblies" { - "_61849C8C6915542843CBD31931EA4B7D" + "_57EEA8113CDE38F44305343E63A5EBC8" { - "Name" = "8:System.Runtime.Handles.dll" + "Name" = "8:System.ClientModel.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.Handles.dll" + "SourcePath" = "8:System.ClientModel.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29855,23 +27434,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_61D9ECBCAA771C3A8BAE2222F36AD38F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_57FAC309E7AD48B78BDE11424276E2A8" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Private.Uri, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Resources.ResourceManager, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_61D9ECBCAA771C3A8BAE2222F36AD38F" + "_57FAC309E7AD48B78BDE11424276E2A8" { - "Name" = "8:System.Private.Uri.dll" + "Name" = "8:System.Resources.ResourceManager.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Private.Uri.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Resources.ResourceManager.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29883,26 +27462,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6257F8A9A74A453984E407D6CB916AF5" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5827C37683574CA6BAC4868921D71620" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Http.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_6257F8A9A74A453984E407D6CB916AF5" + "_5827C37683574CA6BAC4868921D71620" { - "Name" = "8:System.Net.Http.Json.dll" + "Name" = "8:UIAutomationClientSideProviders.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.Http.Json.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\tr\\UIAutomationClientSideProviders.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_D14333D71D9548B993E7562D7B181D97" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29917,23 +27496,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6282EB57E48E4B60B7E78BE071F15267" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_583588A0B8CF4F84A0E0CF3EC72745AF" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_6282EB57E48E4B60B7E78BE071F15267" + "_583588A0B8CF4F84A0E0CF3EC72745AF" { - "Name" = "8:UIAutomationClient.resources.dll" + "Name" = "8:UIAutomationTypes.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\de\\UIAutomationClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pt-BR\\UIAutomationTypes.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_8C6BAC487E12445AAC4169B115BE8835" + "Folder" = "8:_FE1199FD2AED473F9607036466985701" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29948,23 +27527,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_62A01E8AE5354288B3F280DB3F18CDF1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_58C396CAD94644E493315C2801EC4AF5" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Resources.Reader, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClient, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" "ScatterAssemblies" { - "_62A01E8AE5354288B3F280DB3F18CDF1" + "_58C396CAD94644E493315C2801EC4AF5" { - "Name" = "8:System.Resources.Reader.dll" + "Name" = "8:UIAutomationClient.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Resources.Reader.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\UIAutomationClient.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -29979,23 +27558,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_62E2EB85757ECD521EFB47ED25F86AEC" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_592B16F8087356012F59D4A1C7745E4E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IdentityModel.Tokens.Jwt, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.DriveInfo, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_62E2EB85757ECD521EFB47ED25F86AEC" + "_592B16F8087356012F59D4A1C7745E4E" { - "Name" = "8:System.IdentityModel.Tokens.Jwt.dll" + "Name" = "8:System.IO.FileSystem.DriveInfo.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IdentityModel.Tokens.Jwt.dll" + "SourcePath" = "8:System.IO.FileSystem.DriveInfo.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30010,23 +27589,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_63671CEDA4AA460FA5689EBD8101E817" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5A5C71EDF0B2920349215E6664C0FDC3" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.AccessControl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Quic, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_63671CEDA4AA460FA5689EBD8101E817" + "_5A5C71EDF0B2920349215E6664C0FDC3" { - "Name" = "8:System.Threading.AccessControl.dll" + "Name" = "8:System.Net.Quic.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Threading.AccessControl.dll" + "SourcePath" = "8:System.Net.Quic.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30038,26 +27617,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_636D2B8A50DD0086FBFCBE22585C8272" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5AECE1E39D8F63266306FA5F9F3057AC" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Numerics.Vectors, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_636D2B8A50DD0086FBFCBE22585C8272" + "_5AECE1E39D8F63266306FA5F9F3057AC" { - "Name" = "8:System.Numerics.Vectors.dll" + "Name" = "8:System.Runtime.Serialization.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Numerics.Vectors.dll" + "SourcePath" = "8:System.Runtime.Serialization.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30072,23 +27651,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_636F9E41617E45019ACB3A820A95DA38" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5B50C8B4016D419592F238C27112D939" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.OpenSsl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_636F9E41617E45019ACB3A820A95DA38" + "_5B50C8B4016D419592F238C27112D939" { - "Name" = "8:UIAutomationClientSideProviders.resources.dll" + "Name" = "8:System.Security.Cryptography.OpenSsl.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hant\\UIAutomationClientSideProviders.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.Cryptography.OpenSsl.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_FFD6EAF1B3444345AC6B6F35CA58BF38" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30103,23 +27682,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_638ED98CAD46C3F510314D5BA18F5FFA" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5B538E2AD9BE4EEE81436217036C9D66" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Permissions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.AccessControl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_638ED98CAD46C3F510314D5BA18F5FFA" + "_5B538E2AD9BE4EEE81436217036C9D66" { - "Name" = "8:System.Security.Permissions.dll" + "Name" = "8:System.Security.AccessControl.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.Permissions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.AccessControl.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30131,26 +27710,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_64563FACCCB9F211605BD1F9E5E8CB12" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5BFFFF7FD7100CE916F389F8186B56E4" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Emit, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ComponentModel.Annotations, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_64563FACCCB9F211605BD1F9E5E8CB12" + "_5BFFFF7FD7100CE916F389F8186B56E4" { - "Name" = "8:System.Reflection.Emit.dll" + "Name" = "8:System.ComponentModel.Annotations.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Reflection.Emit.dll" + "SourcePath" = "8:System.ComponentModel.Annotations.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30165,32 +27744,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_646ABC94C93542C981FA5D5E3655E115" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\linux-bionic-arm64\\native\\libSystem.IO.Ports.Native.so" - "TargetName" = "8:libSystem.IO.Ports.Native.so" - "Tag" = "8:" - "Folder" = "8:_3E5879F2AE064B8196380C45973B48A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_662DDF5FFF6E4291BAD4AD77A2B4B419" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5C837F67EF074C468C3D6F326FB979E2" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\maccatalyst-x64\\native\\libSystem.IO.Ports.Native.dylib" - "TargetName" = "8:libSystem.IO.Ports.Native.dylib" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:PresentationFramework.Fluent, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" + "ScatterAssemblies" + { + "_5C837F67EF074C468C3D6F326FB979E2" + { + "Name" = "8:PresentationFramework.Fluent.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\PresentationFramework.Fluent.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_16870920F920478DB196DBDA5E3CCD5A" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30205,23 +27775,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_67B28C0C25A549578A5E328EA971DE36" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5C8A40195D2FA713BE376F012B30D161" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Resources.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_67B28C0C25A549578A5E328EA971DE36" + "_5C8A40195D2FA713BE376F012B30D161" { - "Name" = "8:System.Resources.Extensions.dll" + "Name" = "8:System.Security.Cryptography.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Resources.Extensions.dll" + "SourcePath" = "8:System.Security.Cryptography.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30233,15 +27803,15 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_68016F2B9C69414E9FE45AEEB2B7E91B" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5D108855712F4CF4BF2EC9341B54F414" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Hardware.ini" - "TargetName" = "8:Hardware.ini" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Housing.pdb" + "TargetName" = "8:Housing.pdb" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30256,23 +27826,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6813ADA6B6EE4BBCBA52AEC82A08951F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5D4ACCBB99CE4379BFF48836F57C9CDB" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Private.Xml, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Presentation, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" "ScatterAssemblies" { - "_6813ADA6B6EE4BBCBA52AEC82A08951F" + "_5D4ACCBB99CE4379BFF48836F57C9CDB" { - "Name" = "8:System.Private.Xml.dll" + "Name" = "8:System.Windows.Presentation.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Private.Xml.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Windows.Presentation.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30287,23 +27857,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_68B207B0C15748148CE9433956D9DF10" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5D71B277C4094CB78F15A21AD45628F8" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.ServicePoint, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_68B207B0C15748148CE9433956D9DF10" + "_5D71B277C4094CB78F15A21AD45628F8" { - "Name" = "8:PresentationCore.resources.dll" + "Name" = "8:System.Net.ServicePoint.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ru\\PresentationCore.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.ServicePoint.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F050AFEC75CD404984C24AA71672DBCD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30318,23 +27888,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_69642BE489D343598ACB8099F7E9633E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5EFD2F1384E54540AC9B8A0FDC2D115F" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_69642BE489D343598ACB8099F7E9633E" + "_5EFD2F1384E54540AC9B8A0FDC2D115F" { - "Name" = "8:UIAutomationTypes.resources.dll" + "Name" = "8:ReachFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hant\\UIAutomationTypes.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hans\\ReachFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_FFD6EAF1B3444345AC6B6F35CA58BF38" + "Folder" = "8:_76359F5BF5894CC19460472A07F40277" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30349,43 +27919,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6979A6B680CB47C7A69BE7860AF298F6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5F35B58C6C1B4C29AFE168DA80BD218C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.Royale, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Runtime.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_6979A6B680CB47C7A69BE7860AF298F6" + "_5F35B58C6C1B4C29AFE168DA80BD218C" { - "Name" = "8:PresentationFramework.Royale.dll" + "Name" = "8:System.Runtime.Extensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\PresentationFramework.Royale.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Runtime.Extensions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AE4FDCA783348D8844575781D017F0F" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\hostpolicy.dll" - "TargetName" = "8:hostpolicy.dll" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30400,43 +27950,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6B59D77837404D169557D13FAF9B8F58" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5FB303FF5D00491090311B811D4414D2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Dynamic.Runtime, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading.Tasks.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_6B59D77837404D169557D13FAF9B8F58" + "_5FB303FF5D00491090311B811D4414D2" { - "Name" = "8:System.Dynamic.Runtime.dll" + "Name" = "8:System.Threading.Tasks.Extensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Dynamic.Runtime.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Threading.Tasks.Extensions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6B5A0AFB7F264633B350EED803AD6048" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Housing.runtimeconfig.json" - "TargetName" = "8:Housing.runtimeconfig.json" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30451,23 +27981,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6B8C88C0644E4A15BB71AD09F48EF762" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_60532656D73843A7B72A06A8FDF39F18" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.EventLog.Messages, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.DriveInfo, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_6B8C88C0644E4A15BB71AD09F48EF762" + "_60532656D73843A7B72A06A8FDF39F18" { - "Name" = "8:System.Diagnostics.EventLog.Messages.dll" + "Name" = "8:System.IO.FileSystem.DriveInfo.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Diagnostics.EventLog.Messages.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.FileSystem.DriveInfo.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30482,23 +28012,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6BCECE9BC64B4AEE8F0E18CAABE2F48A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_608B8B5F90364C4BB202C91CEB424C29" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Memory.Data, Version=8.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=zh-Hans, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" "ScatterAssemblies" { - "_6BCECE9BC64B4AEE8F0E18CAABE2F48A" + "_608B8B5F90364C4BB202C91CEB424C29" { - "Name" = "8:System.Memory.Data.dll" + "Name" = "8:Microsoft.Data.SqlClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\System.Memory.Data.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hans\\Microsoft.Data.SqlClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_76359F5BF5894CC19460472A07F40277" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30513,23 +28043,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6C0CBD25EBD14EFC95FAB07EFC89A279" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_60AEB7AED27149A08779F3F61D0745D8" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.DataAnnotations, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ClientModel, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" "ScatterAssemblies" { - "_6C0CBD25EBD14EFC95FAB07EFC89A279" + "_60AEB7AED27149A08779F3F61D0745D8" { - "Name" = "8:System.ComponentModel.DataAnnotations.dll" + "Name" = "8:System.ClientModel.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.ComponentModel.DataAnnotations.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.ClientModel.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30544,23 +28074,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6CAF4782BEEB4150B37C0293B79F0069" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_610B8A9E00FC4B4B966C85057C9F3245" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Collections, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_6CAF4782BEEB4150B37C0293B79F0069" + "_610B8A9E00FC4B4B966C85057C9F3245" { - "Name" = "8:System.Text.Json.dll" + "Name" = "8:System.Collections.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Text.Json.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Collections.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30575,23 +28105,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6CB0D578F8CF994FED4ED272B99844CE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6186376DC93E4147A10CEE688187DC66" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Win32.Registry, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Reflection.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_6CB0D578F8CF994FED4ED272B99844CE" + "_6186376DC93E4147A10CEE688187DC66" { - "Name" = "8:Microsoft.Win32.Registry.dll" + "Name" = "8:System.Reflection.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.Win32.Registry.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Reflection.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30603,26 +28133,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6D42945D601C7EA2D2C4D4BA759811D1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_61DCCED4188A44C79CE6F4A3734D9767" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.ILGeneration, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_6D42945D601C7EA2D2C4D4BA759811D1" + "_61DCCED4188A44C79CE6F4A3734D9767" { - "Name" = "8:System.Reflection.Emit.ILGeneration.dll" + "Name" = "8:UIAutomationClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Reflection.Emit.ILGeneration.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ru\\UIAutomationClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_3A07FF1E066342A19AABED2888E683D3" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30634,46 +28164,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6D7D1CC64ED582F3FEB317DD60A477BB" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_622040FCFEF34424944392FB36248EFC" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ServiceModel.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_6D7D1CC64ED582F3FEB317DD60A477BB" + "_622040FCFEF34424944392FB36248EFC" { - "Name" = "8:System.Reflection.Extensions.dll" + "Name" = "8:System.ServiceModel.Web.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Reflection.Extensions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.ServiceModel.Web.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6DF51DDFC6B0453082F2B2406811F6FA" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Housing.runtimeconfig.json" - "TargetName" = "8:Housing.runtimeconfig.json" - "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30688,23 +28198,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6E21E4015E084B80B4E408564756CE8A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_623351C6AD374B06A34FD5401A031507" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_6E21E4015E084B80B4E408564756CE8A" + "_623351C6AD374B06A34FD5401A031507" { - "Name" = "8:System.Numerics.dll" + "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Numerics.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hans\\System.Windows.Controls.Ribbon.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_76359F5BF5894CC19460472A07F40277" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30719,23 +28229,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6E350884A4BF44159F89904F4FDF6D50" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_62667E51DDAC4C82A79030A542EB7509" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Logging.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework-SystemXml, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" "ScatterAssemblies" { - "_6E350884A4BF44159F89904F4FDF6D50" + "_62667E51DDAC4C82A79030A542EB7509" { - "Name" = "8:Microsoft.Extensions.Logging.Abstractions.dll" + "Name" = "8:PresentationFramework-SystemXml.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.Extensions.Logging.Abstractions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\PresentationFramework-SystemXml.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30750,43 +28260,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6EC3A0F1473149B188D48C38F48FF966" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_628929C01DE24A94B168933024A5D4D9" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=cs, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_6EC3A0F1473149B188D48C38F48FF966" + "_628929C01DE24A94B168933024A5D4D9" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:PresentationCore.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\cs\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pl\\PresentationCore.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_2AC88A8D3AA441D1B81B8A08CC064F09" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6F46DE3BFC204F009FA7ECF6785839DF" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Housing.exe" - "TargetName" = "8:Housing.exe" - "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_C688DABCFD5B492EB58182172839DAB4" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30801,23 +28291,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6FB82D0B427BFCBADED30AE11135C003" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_62D80B9313554E00BE828FB3CBDCDF85" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Pipes.AccessControl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_6FB82D0B427BFCBADED30AE11135C003" + "_62D80B9313554E00BE828FB3CBDCDF85" { - "Name" = "8:System.IO.Pipes.AccessControl.dll" + "Name" = "8:System.Xml.Linq.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.Pipes.AccessControl.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Xml.Linq.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30829,26 +28319,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6FC6830B79AB4444918122B66EB28E10" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_62DE6931D33543D691C050919C5EE5A6" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_6FC6830B79AB4444918122B66EB28E10" + "_62DE6931D33543D691C050919C5EE5A6" { "Name" = "8:UIAutomationProvider.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hans\\UIAutomationProvider.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ko\\UIAutomationProvider.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_A526A21B472242C9B6F4662E9D05A435" + "Folder" = "8:_506EF00DD33D4ECF9B29B8A5A859CE45" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30863,12 +28353,12 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6FDB2764263541B1BD6E07B887CE1AA1" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_630B655561194B7FA3227649900954F6" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\android-arm64\\native\\libSystem.IO.Ports.Native.so" - "TargetName" = "8:libSystem.IO.Ports.Native.so" + "SourcePath" = "8:..\\publish\\setup-win-x64\\init.sql" + "TargetName" = "8:init.sql" "Tag" = "8:" - "Folder" = "8:_8D36D5DE28394477AE224E82A493F964" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30883,23 +28373,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_707F3FA8E34A4681B3ADF419E6724458" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_632E1A907456D75E4CF299805F283F0B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Protocols, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Pipes.AccessControl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_707F3FA8E34A4681B3ADF419E6724458" + "_632E1A907456D75E4CF299805F283F0B" { - "Name" = "8:Microsoft.IdentityModel.Protocols.dll" + "Name" = "8:System.IO.Pipes.AccessControl.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.IdentityModel.Protocols.dll" + "SourcePath" = "8:System.IO.Pipes.AccessControl.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30911,46 +28401,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_709E7345734C49C785344FF2FEB5F15C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_63371D0BAD234D5F7696EA820393E3B0" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Formatters, Version=8.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Globalization.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_709E7345734C49C785344FF2FEB5F15C" + "_63371D0BAD234D5F7696EA820393E3B0" { - "Name" = "8:System.Runtime.Serialization.Formatters.dll" + "Name" = "8:System.Globalization.Extensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Runtime.Serialization.Formatters.dll" + "SourcePath" = "8:System.Globalization.Extensions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_70D0E7C7C68F428490359781FA96BA7E" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\linux-musl-x64\\native\\libSystem.IO.Ports.Native.so" - "TargetName" = "8:libSystem.IO.Ports.Native.so" - "Tag" = "8:" - "Folder" = "8:_7E035F6B43784C0DAD2D91040D78FEBD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30962,26 +28432,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_70F8B2B0578A45A09CEC90DCB99959D2" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6410B7CD543C4AA1861A2AC1D40D5169" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Channels, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Formats.Tar, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_70F8B2B0578A45A09CEC90DCB99959D2" + "_6410B7CD543C4AA1861A2AC1D40D5169" { - "Name" = "8:System.Threading.Channels.dll" + "Name" = "8:System.Formats.Tar.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Threading.Channels.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Formats.Tar.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -30996,23 +28466,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_713C184BE2CA45D0BCA6495686EC6078" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6416F1F34F3E46AAB53DDA5D66F179B8" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Azure.Core, Version=1.47.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_713C184BE2CA45D0BCA6495686EC6078" + "_6416F1F34F3E46AAB53DDA5D66F179B8" { - "Name" = "8:Azure.Core.dll" + "Name" = "8:System.Xaml.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Azure.Core.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ko\\System.Xaml.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_506EF00DD33D4ECF9B29B8A5A859CE45" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31027,23 +28497,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7169540326D944AAAA2870E3282DDABB" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_64E7B9EBDBAFB1B17E217C305DAA5B43" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=zh-Hant, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ComponentModel.EventBasedAsync, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7169540326D944AAAA2870E3282DDABB" + "_64E7B9EBDBAFB1B17E217C305DAA5B43" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:System.ComponentModel.EventBasedAsync.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\zh-Hant\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:System.ComponentModel.EventBasedAsync.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_69E478E802BD45489CEFFDA7D2489A56" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31055,26 +28525,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_71A6F30AD21A45D5BFC23EC8EF3B493E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_655FCCA1E86A4494A1245290A41E97B8" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Presentation, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Text.RegularExpressions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_71A6F30AD21A45D5BFC23EC8EF3B493E" + "_655FCCA1E86A4494A1245290A41E97B8" { - "Name" = "8:System.Windows.Presentation.dll" + "Name" = "8:System.Text.RegularExpressions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Windows.Presentation.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Text.RegularExpressions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31089,23 +28559,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_71DBD969B0CF4DB2BE1F02AE13E5CBF1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_65A667BC789D01A72E116514081DB3F9" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=zh-Hant, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:DirectWriteForwarder, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" "ScatterAssemblies" { - "_71DBD969B0CF4DB2BE1F02AE13E5CBF1" + "_65A667BC789D01A72E116514081DB3F9" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:DirectWriteForwarder.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hant\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:DirectWriteForwarder.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_FFD6EAF1B3444345AC6B6F35CA58BF38" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31117,26 +28587,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_71F76A9747B14B2CB34B28663648D9AF" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_67415B187EDD4DB2AF1B659373386D94" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Compression.ZipFile, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_71F76A9747B14B2CB34B28663648D9AF" + "_67415B187EDD4DB2AF1B659373386D94" { - "Name" = "8:System.Windows.Input.Manipulations.resources.dll" + "Name" = "8:System.IO.Compression.ZipFile.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\it\\System.Windows.Input.Manipulations.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.Compression.ZipFile.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33866903D6804194A4096F8D1E34C9F3" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31151,23 +28621,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_724A69148DAD41FE8071EDD44140C459" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_681A6EBA6A68461C95E7263C5490328E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.IsolatedStorage, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_724A69148DAD41FE8071EDD44140C459" + "_681A6EBA6A68461C95E7263C5490328E" { - "Name" = "8:System.Drawing.dll" + "Name" = "8:System.IO.IsolatedStorage.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Drawing.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.IsolatedStorage.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31182,23 +28652,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_73A58D0939B541DFB73116EDFD2DF065" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_686BCF63771C834DC355237F7B3A61CC" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework-SystemData, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Collections.NonGeneric, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_73A58D0939B541DFB73116EDFD2DF065" + "_686BCF63771C834DC355237F7B3A61CC" { - "Name" = "8:PresentationFramework-SystemData.dll" + "Name" = "8:System.Collections.NonGeneric.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\PresentationFramework-SystemData.dll" + "SourcePath" = "8:System.Collections.NonGeneric.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31210,26 +28680,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_742D66E0B36F48E9975E34026F43F7B7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_686CB9C8A3ABAF81B50FDCD359D1856E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_742D66E0B36F48E9975E34026F43F7B7" + "_686CB9C8A3ABAF81B50FDCD359D1856E" { - "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" + "Name" = "8:System.Threading.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hans\\System.Windows.Controls.Ribbon.resources.dll" + "SourcePath" = "8:System.Threading.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_A526A21B472242C9B6F4662E9D05A435" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31241,26 +28711,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_74D6C219C0344F618D8A91E4E60D6DD2" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_697B50CE235447299497D237412C4DCD" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=ru, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" "ScatterAssemblies" { - "_74D6C219C0344F618D8A91E4E60D6DD2" + "_697B50CE235447299497D237412C4DCD" { - "Name" = "8:System.Xaml.resources.dll" + "Name" = "8:Microsoft.Data.SqlClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hans\\System.Xaml.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ru\\Microsoft.Data.SqlClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_A526A21B472242C9B6F4662E9D05A435" + "Folder" = "8:_3A07FF1E066342A19AABED2888E683D3" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31275,23 +28745,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_757E886985FB4EF9814BE6364A1133D6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_698CED33DF4A4DBAAA41483975BE2F8D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Identity.Client.Extensions.Msal, Version=4.73.1.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_757E886985FB4EF9814BE6364A1133D6" + "_698CED33DF4A4DBAAA41483975BE2F8D" { - "Name" = "8:Microsoft.Identity.Client.Extensions.Msal.dll" + "Name" = "8:UIAutomationTypes.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.Identity.Client.Extensions.Msal.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pl\\UIAutomationTypes.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_C688DABCFD5B492EB58182172839DAB4" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31306,23 +28776,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_75FE1351602A4F8E85CB6F9A14FCFF09" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_69AB1DD380134079B4877AC8EA430A2D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Principal.Windows, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.StackTrace, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_75FE1351602A4F8E85CB6F9A14FCFF09" + "_69AB1DD380134079B4877AC8EA430A2D" { - "Name" = "8:System.Security.Principal.Windows.dll" + "Name" = "8:System.Diagnostics.StackTrace.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.Principal.Windows.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Diagnostics.StackTrace.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31337,54 +28807,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_76B8C3FD98024834EB912F222C3CA7E9" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6AD6EEB4586A4ACF9B3E9F11A6F644DC" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tools, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_76B8C3FD98024834EB912F222C3CA7E9" - { - "Name" = "8:System.Diagnostics.Tools.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.Tools.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7740A5F5AF344E60A34D7B662C7CA4CD" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Reflection.DispatchProxy, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7740A5F5AF344E60A34D7B662C7CA4CD" + "_6AD6EEB4586A4ACF9B3E9F11A6F644DC" { - "Name" = "8:ReachFramework.resources.dll" + "Name" = "8:System.Reflection.DispatchProxy.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ru\\ReachFramework.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Reflection.DispatchProxy.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F050AFEC75CD404984C24AA71672DBCD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31399,23 +28838,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_77724C4D6DDE4D7FB55FDA71F5BC6687" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6AE632079F394BD3BD1D95910CCD9D25" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Ports, Version=9.0.0.10, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Resources.Writer, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_77724C4D6DDE4D7FB55FDA71F5BC6687" + "_6AE632079F394BD3BD1D95910CCD9D25" { - "Name" = "8:System.IO.Ports.dll" + "Name" = "8:System.Resources.Writer.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\win\\lib\\net9.0\\System.IO.Ports.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Resources.Writer.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_5E5A0D9A59944785B23E8B763BA82CA8" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31430,54 +28869,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_779089C4535D1F4BE27BCFA5629CC6B4" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Private.Xml.Linq, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_779089C4535D1F4BE27BCFA5629CC6B4" - { - "Name" = "8:System.Private.Xml.Linq.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Private.Xml.Linq.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_77CB7EFC64B24F69A2DB0FD932B789A0" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6B2518E99F2845ADBCCEC065B7A24A9F" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient, Version=6.0.0.0, Culture=neutral, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Collections.NonGeneric, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_77CB7EFC64B24F69A2DB0FD932B789A0" + "_6B2518E99F2845ADBCCEC065B7A24A9F" { - "Name" = "8:Microsoft.Data.SqlClient.dll" + "Name" = "8:System.Collections.NonGeneric.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\win\\lib\\net9.0\\Microsoft.Data.SqlClient.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Collections.NonGeneric.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_5E5A0D9A59944785B23E8B763BA82CA8" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31492,43 +28900,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77E4F905B2BE49CBAE2EB1D1631AB1D4" - { - "SourcePath" = "8:..\\Resources\\Housing_voltage_current_icon.ico" - "TargetName" = "8:Housing_voltage_current_icon.ico" - "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_77EED7A9D27544A6B02FB4F95469D115" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6B859A7BC8A14F42B491894F7EC47F04" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_77EED7A9D27544A6B02FB4F95469D115" + "_6B859A7BC8A14F42B491894F7EC47F04" { - "Name" = "8:UIAutomationProvider.resources.dll" + "Name" = "8:System.Windows.Input.Manipulations.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ko\\UIAutomationProvider.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\de\\System.Windows.Input.Manipulations.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_CB3BE22960A44DC39C9AA84ABE16E22A" + "Folder" = "8:_05DBECC2336740CDB09A80EB68B7B14F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31543,12 +28931,12 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_782CACCCBFD64587BFFC4E311ECA9631" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6BB78274ACF04F54AFA5791C2727C6BA" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Housing.pdb" - "TargetName" = "8:Housing.pdb" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Hardware.ini" + "TargetName" = "8:Hardware.ini" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31563,23 +28951,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_78718FB568EC5F0FBD61D8EA7614AC2C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6CF80A72B1AA427F859E25B422E8FB82" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" "AssemblyAsmDisplayName" = "8:Accessibility, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_78718FB568EC5F0FBD61D8EA7614AC2C" + "_6CF80A72B1AA427F859E25B422E8FB82" { "Name" = "8:Accessibility.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Accessibility.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Accessibility.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31591,26 +28979,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_78D95902EB68CD5C725D065687322710" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6D02466658184C1EB776E0F595862B1C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_78D95902EB68CD5C725D065687322710" + "_6D02466658184C1EB776E0F595862B1C" { - "Name" = "8:System.Runtime.Extensions.dll" + "Name" = "8:UIAutomationClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.Extensions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ja\\UIAutomationClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_EF49A53A2F124808B6DA2E203BD36641" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31622,26 +29010,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_796939A9213DCAED09A37C3DE51C80B0" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6D1A9B163ABF4B5BAAAF60ABA6C0ABE2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Tasks.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_796939A9213DCAED09A37C3DE51C80B0" + "_6D1A9B163ABF4B5BAAAF60ABA6C0ABE2" { - "Name" = "8:System.Threading.Tasks.Extensions.dll" + "Name" = "8:PresentationFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Threading.Tasks.Extensions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\fr\\PresentationFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_CAA532AD901F4BF8A56F3FCA4F0F1124" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31653,26 +29041,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_79CFE04F74314C5AAA631C8A6835BA7E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6DC1F90252234DA7B2C1EF13DF9104ED" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Protocols.OpenIdConnect, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.MemoryMappedFiles, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_79CFE04F74314C5AAA631C8A6835BA7E" + "_6DC1F90252234DA7B2C1EF13DF9104ED" { - "Name" = "8:Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" + "Name" = "8:System.IO.MemoryMappedFiles.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.MemoryMappedFiles.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31687,23 +29075,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6E83BDD242CD403E88C6174D59C0F7D4" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Process, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.NameResolution, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_79E1C08BCCEB4D39BC95C6BC8FA7BFDD" + "_6E83BDD242CD403E88C6174D59C0F7D4" { - "Name" = "8:System.Diagnostics.Process.dll" + "Name" = "8:System.Net.NameResolution.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Diagnostics.Process.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.NameResolution.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31718,23 +29106,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7A001E5060F007B76553095966B3DD3A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6E858C1B43B264FBD4E33E5728B8DEC4" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.Encodings.Web, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Xml.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7A001E5060F007B76553095966B3DD3A" + "_6E858C1B43B264FBD4E33E5728B8DEC4" { - "Name" = "8:System.Text.Encodings.Web.dll" + "Name" = "8:System.Xml.Serialization.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Text.Encodings.Web.dll" + "SourcePath" = "8:System.Xml.Serialization.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31749,23 +29137,12 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7A28B079B11A4E5DAC6934D4636D9DF1" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6E87DC1BEC0448928C102F9DD6DA2A3A" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_7A28B079B11A4E5DAC6934D4636D9DF1" - { - "Name" = "8:System.Runtime.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Runtime.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\publish\\setup-win-x64\\mscordaccore_amd64_amd64_9.0.1726.26416.dll" + "TargetName" = "8:mscordaccore_amd64_amd64_9.0.1726.26416.dll" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31780,23 +29157,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7A5B16731EEC4355B576D7DDFCA358BF" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6EEF588F24794BD699D2C5F6A0670472" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.WebSockets.Client, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading.Channels, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7A5B16731EEC4355B576D7DDFCA358BF" + "_6EEF588F24794BD699D2C5F6A0670472" { - "Name" = "8:System.Net.WebSockets.Client.dll" + "Name" = "8:System.Threading.Channels.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.WebSockets.Client.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Threading.Channels.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31811,23 +29188,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7B84FC380764415ABB407E76018A6C1F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6F56D84C89834F49BF3F9869A9EE6C21" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Win32.SystemEvents, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.SqlServer.Server, Version=1.0.0.0, Culture=neutral, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7B84FC380764415ABB407E76018A6C1F" + "_6F56D84C89834F49BF3F9869A9EE6C21" { - "Name" = "8:Microsoft.Win32.SystemEvents.dll" + "Name" = "8:Microsoft.SqlServer.Server.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.Win32.SystemEvents.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.SqlServer.Server.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31842,54 +29219,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7BB2F2553D928EC95A45CFC8C2047585" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Xml.XPath.XDocument, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_7BB2F2553D928EC95A45CFC8C2047585" - { - "Name" = "8:System.Xml.XPath.XDocument.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Xml.XPath.XDocument.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7BEEF2356B6747669FC740180F2A25C9" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6F6DC417B88740A88ECFE1DCCF7B668C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Tasks.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.AppContext, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7BEEF2356B6747669FC740180F2A25C9" + "_6F6DC417B88740A88ECFE1DCCF7B668C" { - "Name" = "8:System.Threading.Tasks.Extensions.dll" + "Name" = "8:System.AppContext.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Threading.Tasks.Extensions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.AppContext.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31904,43 +29250,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7C38E8CFCE24417FA2A80EC4AC70D9F2" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6FAE27D054224ED49E85B323757871AF" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7C38E8CFCE24417FA2A80EC4AC70D9F2" + "_6FAE27D054224ED49E85B323757871AF" { - "Name" = "8:Microsoft.Extensions.Primitives.dll" + "Name" = "8:UIAutomationTypes.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.Extensions.Primitives.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\fr\\UIAutomationTypes.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7CB2616BCB8E48C6A6B018CDC5C00EDD" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\vcruntime140_cor3.dll" - "TargetName" = "8:vcruntime140_cor3.dll" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_CAA532AD901F4BF8A56F3FCA4F0F1124" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31955,23 +29281,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7D2B813F721C14D9263F358A347E4DB1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_700D765813FB453FF69B8805E111B1C4" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.RuntimeInformation, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Azure.Core, Version=1.47.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7D2B813F721C14D9263F358A347E4DB1" + "_700D765813FB453FF69B8805E111B1C4" { - "Name" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" + "Name" = "8:Azure.Core.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" + "SourcePath" = "8:Azure.Core.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -31986,23 +29312,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7D3F6BBD4122435897F5038F377E74EB" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7022B68B425F41DD82B3A2A120BCBDBE" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Identity.Client, Version=4.73.1.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7D3F6BBD4122435897F5038F377E74EB" + "_7022B68B425F41DD82B3A2A120BCBDBE" { - "Name" = "8:Microsoft.Identity.Client.dll" + "Name" = "8:UIAutomationTypes.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.Identity.Client.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ru\\UIAutomationTypes.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_3A07FF1E066342A19AABED2888E683D3" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32017,23 +29343,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7D8FCF85D594C05AD593D035B7C79AC9" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7074B3764DF24B388A81F8E9C202DC9C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7D8FCF85D594C05AD593D035B7C79AC9" + "_7074B3764DF24B388A81F8E9C202DC9C" { - "Name" = "8:System.Runtime.dll" + "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pt-BR\\System.Windows.Controls.Ribbon.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_FE1199FD2AED473F9607036466985701" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32045,26 +29371,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7DA9550944E242C8B9D670E9FE8EE460" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_70ED8AD69F00771AC685626BF42151F9" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClient, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.StackTrace, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7DA9550944E242C8B9D670E9FE8EE460" + "_70ED8AD69F00771AC685626BF42151F9" { - "Name" = "8:UIAutomationClient.dll" + "Name" = "8:System.Diagnostics.StackTrace.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\UIAutomationClient.dll" + "SourcePath" = "8:System.Diagnostics.StackTrace.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32076,26 +29402,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7DC4F8BA717948CE884330DF70FD7405" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_716F98D87D6841DC8B6B346A171CE780" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Private.Xml.Linq, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7DC4F8BA717948CE884330DF70FD7405" + "_716F98D87D6841DC8B6B346A171CE780" { - "Name" = "8:UIAutomationClient.resources.dll" + "Name" = "8:System.Private.Xml.Linq.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\cs\\UIAutomationClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Private.Xml.Linq.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_39C4141125A7444BAD628B61802AD256" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32110,23 +29436,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7DFD03C66B7145EBA88D17620A62B6F6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_71DB4173D0A1DE774C90437928F85735" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient, Version=6.0.0.0, Culture=neutral, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Private.Xml.Linq, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7DFD03C66B7145EBA88D17620A62B6F6" + "_71DB4173D0A1DE774C90437928F85735" { - "Name" = "8:Microsoft.Data.SqlClient.dll" + "Name" = "8:System.Private.Xml.Linq.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\unix\\lib\\net9.0\\Microsoft.Data.SqlClient.dll" + "SourcePath" = "8:System.Private.Xml.Linq.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_9A2ECD9DD63044F48A32BDAB4694DD4C" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32138,26 +29464,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7E5F4EFD051649429B98C06216211363" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_72E01BBE8FF147988DB5612281B42645" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7E5F4EFD051649429B98C06216211363" + "_72E01BBE8FF147988DB5612281B42645" { - "Name" = "8:UIAutomationClient.resources.dll" + "Name" = "8:PresentationCore.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\fr\\UIAutomationClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\de\\PresentationCore.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_0D6BB22DBA6348629B76C0E2123EBBFD" + "Folder" = "8:_05DBECC2336740CDB09A80EB68B7B14F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32172,23 +29498,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7E911BF5E2F54F589649B545BC27AB61" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_730CEE37D78449FC89EBFC526A39C7D1" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Identity.Client.Extensions.Msal, Version=4.73.1.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7E911BF5E2F54F589649B545BC27AB61" + "_730CEE37D78449FC89EBFC526A39C7D1" { - "Name" = "8:PresentationCore.resources.dll" + "Name" = "8:Microsoft.Identity.Client.Extensions.Msal.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\it\\PresentationCore.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.Identity.Client.Extensions.Msal.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33866903D6804194A4096F8D1E34C9F3" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32203,23 +29529,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7E986E1C7266444CA9453CB2D8BD412A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_736EDDDBC3584E7A83D01BE2C66DBF5B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ComponentModel.EventBasedAsync, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7E986E1C7266444CA9453CB2D8BD412A" + "_736EDDDBC3584E7A83D01BE2C66DBF5B" { - "Name" = "8:System.Core.dll" + "Name" = "8:System.ComponentModel.EventBasedAsync.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Core.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.ComponentModel.EventBasedAsync.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32234,23 +29560,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7EC2005B277E210206C82E36034DB2AF" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_73D3FD7993624E07B5E561B11755AC2B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework.Royale, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" "ScatterAssemblies" { - "_7EC2005B277E210206C82E36034DB2AF" + "_73D3FD7993624E07B5E561B11755AC2B" { - "Name" = "8:System.Reflection.Primitives.dll" + "Name" = "8:PresentationFramework.Royale.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Reflection.Primitives.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\PresentationFramework.Royale.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32262,26 +29588,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7F1E4F7129DA41D9AE76CB81C034F7F4" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_745EED586EE63238193F683885BBD029" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.HttpListener, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7F1E4F7129DA41D9AE76CB81C034F7F4" + "_745EED586EE63238193F683885BBD029" { - "Name" = "8:System.Xml.Serialization.dll" + "Name" = "8:System.Net.HttpListener.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Xml.Serialization.dll" + "SourcePath" = "8:System.Net.HttpListener.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32293,26 +29619,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7F7DC9EE872922FE6E02BFEC0494DEA5" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_74C989C8B18A40A885321F7F8188A83A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Memory.Data, Version=8.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IdentityModel.Tokens.Jwt, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7F7DC9EE872922FE6E02BFEC0494DEA5" + "_74C989C8B18A40A885321F7F8188A83A" { - "Name" = "8:System.Memory.Data.dll" + "Name" = "8:System.IdentityModel.Tokens.Jwt.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Memory.Data.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IdentityModel.Tokens.Jwt.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32324,26 +29650,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7FE3CA178C1E4CD49C7B2908F287A98B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_74DDAC05ED86A917F97AC419100EFF7C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Text.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7FE3CA178C1E4CD49C7B2908F287A98B" + "_74DDAC05ED86A917F97AC419100EFF7C" { - "Name" = "8:System.Xaml.resources.dll" + "Name" = "8:System.Text.Json.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\it\\System.Xaml.resources.dll" + "SourcePath" = "8:System.Text.Json.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33866903D6804194A4096F8D1E34C9F3" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32355,26 +29681,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7FF7FE0D54E74328BB96BC3FCCE672CF" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_74F88C795ADA41838494938B37ACB05E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Logging, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7FF7FE0D54E74328BB96BC3FCCE672CF" + "_74F88C795ADA41838494938B37ACB05E" { - "Name" = "8:Microsoft.IdentityModel.Logging.dll" + "Name" = "8:System.IO.FileSystem.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.IdentityModel.Logging.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.FileSystem.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32389,23 +29715,12 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_801C6A9E7101F6AFD7A06D87FCCF4773" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_751F5E62B3CB4E8E8408ED7894BD77DB" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_801C6A9E7101F6AFD7A06D87FCCF4773" - { - "Name" = "8:System.ComponentModel.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ComponentModel.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\publish\\setup-win-x64\\mscordbi.dll" + "TargetName" = "8:mscordbi.dll" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32417,26 +29732,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_80443D2C922030B6CD68CCA745F0E5B1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_76060290214147F1808CF4DF19B364E0" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Formats.Nrbf, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Formats.Asn1, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_80443D2C922030B6CD68CCA745F0E5B1" + "_76060290214147F1808CF4DF19B364E0" { - "Name" = "8:System.Formats.Nrbf.dll" + "Name" = "8:System.Formats.Asn1.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Formats.Nrbf.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Formats.Asn1.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32448,26 +29763,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8066AEF048BA9A2FA7A554563AC0D3E4" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_76B7C52A3F814FAD80D2B109704AC016" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8066AEF048BA9A2FA7A554563AC0D3E4" + "_76B7C52A3F814FAD80D2B109704AC016" { - "Name" = "8:System.Linq.dll" + "Name" = "8:PresentationCore.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Linq.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\cs\\PresentationCore.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_7901A3B17F9447C3A81D55DC5033828B" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32479,15 +29794,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8067A6F0C6794753B3BBDA35A9513D8E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7741A8335D6344BFB4473EE8456BA323" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\clrgcexp.dll" - "TargetName" = "8:clrgcexp.dll" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.FileVersionInfo, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_7741A8335D6344BFB4473EE8456BA323" + { + "Name" = "8:System.Diagnostics.FileVersionInfo.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Diagnostics.FileVersionInfo.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32502,23 +29828,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_80A5A7F152874D0C9FD7D6BC0DC163BC" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7760628DDCA7449AB05277621908368D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_80A5A7F152874D0C9FD7D6BC0DC163BC" + "_7760628DDCA7449AB05277621908368D" { - "Name" = "8:UIAutomationProvider.resources.dll" + "Name" = "8:System.Windows.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\fr\\UIAutomationProvider.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Windows.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_0D6BB22DBA6348629B76C0E2123EBBFD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32533,23 +29859,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_80FAF08BE91DC1EC96DC613154D44F7E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7776F0B3F25D4F958A79A3B702D72900" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Options, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Quic, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_80FAF08BE91DC1EC96DC613154D44F7E" + "_7776F0B3F25D4F958A79A3B702D72900" { - "Name" = "8:Microsoft.Extensions.Options.dll" + "Name" = "8:System.Net.Quic.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.Extensions.Options.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.Quic.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32561,26 +29887,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8172857E0F7E4A0486A9D6A0F60B58ED" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_777D66705D8B49A0AA649B76F14CDC63" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Handles, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationProvider, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" "ScatterAssemblies" { - "_8172857E0F7E4A0486A9D6A0F60B58ED" + "_777D66705D8B49A0AA649B76F14CDC63" { - "Name" = "8:System.Runtime.Handles.dll" + "Name" = "8:UIAutomationProvider.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Runtime.Handles.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\UIAutomationProvider.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32595,23 +29921,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_818C90D1A56563131B63B1CA3CA576F3" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_784ACDE198073C9AECF536BBDD06E2CA" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Pkcs, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Pipes, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_818C90D1A56563131B63B1CA3CA576F3" + "_784ACDE198073C9AECF536BBDD06E2CA" { - "Name" = "8:System.Security.Cryptography.Pkcs.dll" + "Name" = "8:System.IO.Pipes.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.Cryptography.Pkcs.dll" + "SourcePath" = "8:System.IO.Pipes.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32626,23 +29952,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_81C28C65CDD545B49B276CEC8FAA9C50" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_78876DFFB8F54757A7E7CD5F6937D821" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationUI, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Net.NetworkInformation, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_81C28C65CDD545B49B276CEC8FAA9C50" + "_78876DFFB8F54757A7E7CD5F6937D821" { - "Name" = "8:PresentationUI.dll" + "Name" = "8:System.Net.NetworkInformation.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\PresentationUI.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.NetworkInformation.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32657,23 +29983,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_82A07788C4F0390092FA707DCB5CA209" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_791F7F6F4B02DF11734DF494ED085D71" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xml.XmlSerializer, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_82A07788C4F0390092FA707DCB5CA209" + "_791F7F6F4B02DF11734DF494ED085D71" { - "Name" = "8:System.ComponentModel.Primitives.dll" + "Name" = "8:System.Xml.XmlSerializer.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.ComponentModel.Primitives.dll" + "SourcePath" = "8:System.Xml.XmlSerializer.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32688,23 +30014,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_82A6CF9F4FD84C679D36AEEDBB1FCE86" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_792C41CB6C66CA56AB56A89516AF727F" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.StackTrace, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Transactions.Local, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_82A6CF9F4FD84C679D36AEEDBB1FCE86" + "_792C41CB6C66CA56AB56A89516AF727F" { - "Name" = "8:System.Diagnostics.StackTrace.dll" + "Name" = "8:System.Transactions.Local.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Diagnostics.StackTrace.dll" + "SourcePath" = "8:System.Transactions.Local.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32716,26 +30042,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_82D3BD935404854CA720F54A2B42897F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_79B48096B03304C26F26ED14E79E3EA8" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Identity.Client.Extensions.Msal, Version=4.73.1.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_82D3BD935404854CA720F54A2B42897F" + "_79B48096B03304C26F26ED14E79E3EA8" { - "Name" = "8:Microsoft.Identity.Client.Extensions.Msal.dll" + "Name" = "8:netstandard.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.Identity.Client.Extensions.Msal.dll" + "SourcePath" = "8:netstandard.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32750,23 +30076,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_82FB452E40D54EE1B060D771EF4AC513" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_79B4DD4657554A8B9BE6072267D33839" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Bcl.AsyncInterfaces, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_82FB452E40D54EE1B060D771EF4AC513" + "_79B4DD4657554A8B9BE6072267D33839" { - "Name" = "8:Microsoft.Bcl.AsyncInterfaces.dll" + "Name" = "8:UIAutomationTypes.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.Bcl.AsyncInterfaces.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ko\\UIAutomationTypes.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_506EF00DD33D4ECF9B29B8A5A859CE45" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32781,23 +30107,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_83C9DE3A861D9F898B96B6FCAC6B35DB" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7A58EB8E4D024E9ABEEF4643AD40C308" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Reflection.Metadata, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_83C9DE3A861D9F898B96B6FCAC6B35DB" + "_7A58EB8E4D024E9ABEEF4643AD40C308" { - "Name" = "8:System.Runtime.Serialization.Xml.dll" + "Name" = "8:System.Reflection.Metadata.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.Serialization.Xml.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Reflection.Metadata.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32809,26 +30135,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_83F0C7A493D8435EAB296C73FA970749" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7A84333992BE4051A17655C8A326279A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=cs, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_83F0C7A493D8435EAB296C73FA970749" + "_7A84333992BE4051A17655C8A326279A" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:System.Xaml.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\cs\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\fr\\System.Xaml.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_39C4141125A7444BAD628B61802AD256" + "Folder" = "8:_CAA532AD901F4BF8A56F3FCA4F0F1124" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32843,23 +30169,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8426152F661C4C81AB2C8349F4F1D286" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7AC9D958070F4B42A75DCF786D3E4051" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Tokens, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.Debug, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8426152F661C4C81AB2C8349F4F1D286" + "_7AC9D958070F4B42A75DCF786D3E4051" { - "Name" = "8:Microsoft.IdentityModel.Tokens.dll" + "Name" = "8:System.Diagnostics.Debug.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.IdentityModel.Tokens.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Diagnostics.Debug.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32874,23 +30200,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_84381ED1D01A444DA4B139C706F80BC9" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7B069A9B1491433AA37919DB79E1CF40" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.IsolatedStorage, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_84381ED1D01A444DA4B139C706F80BC9" + "_7B069A9B1491433AA37919DB79E1CF40" { - "Name" = "8:System.IO.IsolatedStorage.dll" + "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.IsolatedStorage.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\fr\\System.Windows.Controls.Ribbon.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_CAA532AD901F4BF8A56F3FCA4F0F1124" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32905,23 +30231,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8446B116F7184398BD545B60AFF3FC46" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7BEAA3F3CE3A41E1B5E7AA81B64066D9" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.NameResolution, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.WebSockets.Client, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8446B116F7184398BD545B60AFF3FC46" + "_7BEAA3F3CE3A41E1B5E7AA81B64066D9" { - "Name" = "8:System.Net.NameResolution.dll" + "Name" = "8:System.Net.WebSockets.Client.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.NameResolution.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.WebSockets.Client.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32936,12 +30262,12 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_849E935871D84248B313C64D1344ECEC" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7C5310AB7C9646AFBD00BF49A0DD99E5" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.Data.SqlClient.SNI.dll" - "TargetName" = "8:Microsoft.Data.SqlClient.SNI.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\D3DCompiler_47_cor3.dll" + "TargetName" = "8:D3DCompiler_47_cor3.dll" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32956,23 +30282,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_84D1E150F94A4734AF69639266E603A9" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7C840CCB2F2C1EA4816FE487B5E752DD" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Protocols, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_84D1E150F94A4734AF69639266E603A9" + "_7C840CCB2F2C1EA4816FE487B5E752DD" { - "Name" = "8:System.Net.Primitives.dll" + "Name" = "8:Microsoft.IdentityModel.Protocols.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.Primitives.dll" + "SourcePath" = "8:Microsoft.IdentityModel.Protocols.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -32984,26 +30310,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_84DDF0EA2A0049A391FCE138D9CB5660" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7DCD3B5302DC405B8A2643511ACC5403" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_84DDF0EA2A0049A391FCE138D9CB5660" + "_7DCD3B5302DC405B8A2643511ACC5403" { - "Name" = "8:PresentationUI.resources.dll" + "Name" = "8:PresentationCore.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\es\\PresentationUI.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\it\\PresentationCore.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_319F794A01F24DA7B010B84BF5746B1F" + "Folder" = "8:_154C18835E314DCA89F39AA7646FFC12" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33018,23 +30344,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_857F5B9F107D4EE0A084B7EFFF52D005" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7EA003AA5FED4C9D9C5BD3195F71DD3D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework-SystemXml, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.ILGeneration, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_857F5B9F107D4EE0A084B7EFFF52D005" + "_7EA003AA5FED4C9D9C5BD3195F71DD3D" { - "Name" = "8:PresentationFramework-SystemXml.dll" + "Name" = "8:System.Reflection.Emit.ILGeneration.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\PresentationFramework-SystemXml.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Reflection.Emit.ILGeneration.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33049,23 +30375,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_85B399791CB74ADD9F8C48730A9028FB" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7EBB599986E44153ADD9E12201E1951B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=de, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_85B399791CB74ADD9F8C48730A9028FB" + "_7EBB599986E44153ADD9E12201E1951B" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:System.Runtime.Serialization.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\de\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Runtime.Serialization.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_8C6BAC487E12445AAC4169B115BE8835" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33080,23 +30406,54 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8620B1F0C2FA4D348B9E63F0BE9FA1ED" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7F210359DC9E62075F674C1B0050A471" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.Annotations, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Collections.Concurrent, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8620B1F0C2FA4D348B9E63F0BE9FA1ED" + "_7F210359DC9E62075F674C1B0050A471" { - "Name" = "8:System.ComponentModel.Annotations.dll" + "Name" = "8:System.Collections.Concurrent.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.ComponentModel.Annotations.dll" + "SourcePath" = "8:System.Collections.Concurrent.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7F44F5DCF7044398A8BC0D24E76B35B4" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.TraceSource, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_7F44F5DCF7044398A8BC0D24E76B35B4" + { + "Name" = "8:System.Diagnostics.TraceSource.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Diagnostics.TraceSource.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33111,23 +30468,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_866E8D70379E4EC8B625FFE1F47FD889" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7F69B08CF92C49C49E4AC79DDB3C1A9C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Xml, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_866E8D70379E4EC8B625FFE1F47FD889" + "_7F69B08CF92C49C49E4AC79DDB3C1A9C" { - "Name" = "8:System.Security.Cryptography.Xml.dll" + "Name" = "8:PresentationFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.Cryptography.Xml.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pl\\PresentationFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_C688DABCFD5B492EB58182172839DAB4" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33142,23 +30499,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_86A788B950814C0859DE3243B664552F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7FA12247CFA9C7A384CE9D1B345A93E5" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.SecureString, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_86A788B950814C0859DE3243B664552F" + "_7FA12247CFA9C7A384CE9D1B345A93E5" { - "Name" = "8:System.IO.Compression.dll" + "Name" = "8:System.Security.SecureString.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.Compression.dll" + "SourcePath" = "8:System.Security.SecureString.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33173,23 +30530,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_876A43B08BFA423BA8F64AF0A220CC03" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7FF631853BCE4C7080E8E8CB1DBCDCC1" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Transactions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.AccessControl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_876A43B08BFA423BA8F64AF0A220CC03" + "_7FF631853BCE4C7080E8E8CB1DBCDCC1" { - "Name" = "8:System.Transactions.dll" + "Name" = "8:System.IO.FileSystem.AccessControl.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Transactions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.FileSystem.AccessControl.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33204,23 +30561,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_87CB044B3B874008B34A0806C2A0CEB4" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_80E8F008375A8F16DA4D31C71B44B93B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Printing, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.ILGeneration, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_87CB044B3B874008B34A0806C2A0CEB4" + "_80E8F008375A8F16DA4D31C71B44B93B" { - "Name" = "8:System.Printing.dll" + "Name" = "8:System.Reflection.Emit.ILGeneration.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Printing.dll" + "SourcePath" = "8:System.Reflection.Emit.ILGeneration.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33232,26 +30589,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_87D4C6754BA84A78948B93C0355CE798" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8146F9A2DB6A4D498ED4A46C80ECC662" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.WebSockets, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_87D4C6754BA84A78948B93C0355CE798" + "_8146F9A2DB6A4D498ED4A46C80ECC662" { - "Name" = "8:System.IO.FileSystem.Primitives.dll" + "Name" = "8:System.Net.WebSockets.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.FileSystem.Primitives.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.WebSockets.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33266,23 +30623,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_87D78666028C4FEA88D134AA4B28F555" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_815241ADB1F91E73543454427C08153B" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_87D78666028C4FEA88D134AA4B28F555" + "_815241ADB1F91E73543454427C08153B" { - "Name" = "8:System.Runtime.Serialization.Primitives.dll" + "Name" = "8:System.Runtime.InteropServices.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Runtime.Serialization.Primitives.dll" + "SourcePath" = "8:System.Runtime.InteropServices.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33294,26 +30651,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_88A2108E2171BF0E64073F268672989C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_81776EE3B0D14F098DEF71346C834416" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Formats.Asn1, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Ports, Version=9.0.0.10, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_88A2108E2171BF0E64073F268672989C" + "_81776EE3B0D14F098DEF71346C834416" { - "Name" = "8:System.Formats.Asn1.dll" + "Name" = "8:System.IO.Ports.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Formats.Asn1.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.Ports.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33325,26 +30682,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_88D5C8CD8340C75112D82131B6AF59AD" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_81AFEF9F03D8489B9EE1A8622DAE3A35" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq.Expressions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_88D5C8CD8340C75112D82131B6AF59AD" + "_81AFEF9F03D8489B9EE1A8622DAE3A35" { - "Name" = "8:System.Linq.Expressions.dll" + "Name" = "8:System.Windows.Input.Manipulations.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Linq.Expressions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\es\\System.Windows.Input.Manipulations.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_50D95BB66E0E4F02ABA1951CD4EE263F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33356,26 +30713,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_88E2AB5CC52F4316862C7922C2C6031D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8285DC333F7A4C1487CD04AD46B1FFC2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Text.Encoding, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_88E2AB5CC52F4316862C7922C2C6031D" + "_8285DC333F7A4C1487CD04AD46B1FFC2" { - "Name" = "8:PresentationCore.resources.dll" + "Name" = "8:System.Text.Encoding.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\cs\\PresentationCore.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Text.Encoding.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_39C4141125A7444BAD628B61802AD256" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33390,23 +30747,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_88E77811AF3F4C4AB4AE55BAD8A215CD" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_845D79FA2EB84633B533058C2714CDA3" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:ReachFramework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_88E77811AF3F4C4AB4AE55BAD8A215CD" + "_845D79FA2EB84633B533058C2714CDA3" { - "Name" = "8:ReachFramework.dll" + "Name" = "8:PresentationCore.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ReachFramework.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\fr\\PresentationCore.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_CAA532AD901F4BF8A56F3FCA4F0F1124" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33421,43 +30778,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_88FC171E99AC49839D76EF2DF1767E61" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\linux-x64\\native\\libSystem.IO.Ports.Native.so" - "TargetName" = "8:libSystem.IO.Ports.Native.so" - "Tag" = "8:" - "Folder" = "8:_A6040D6BA2AA4392B2462FEF0965D42F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8994F2ABBF4C4069AB4AA0C200209AA7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_846C48CA0D30791957B414299D783B4D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Globalization.Calendars, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8994F2ABBF4C4069AB4AA0C200209AA7" + "_846C48CA0D30791957B414299D783B4D" { - "Name" = "8:System.Windows.Input.Manipulations.resources.dll" + "Name" = "8:System.Globalization.Calendars.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\cs\\System.Windows.Input.Manipulations.resources.dll" + "SourcePath" = "8:System.Globalization.Calendars.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_39C4141125A7444BAD628B61802AD256" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33469,26 +30806,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8A9143138F81414DAA84CA0B6AF5D476" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_84E6645587CD46C985603D661E800251" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Algorithms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=pl, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8A9143138F81414DAA84CA0B6AF5D476" + "_84E6645587CD46C985603D661E800251" { - "Name" = "8:System.Security.Cryptography.Algorithms.dll" + "Name" = "8:Microsoft.Data.SqlClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.Cryptography.Algorithms.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pl\\Microsoft.Data.SqlClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_C688DABCFD5B492EB58182172839DAB4" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33503,23 +30840,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8ACE14AFC519438F9F7CFA1E57E857AA" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_857B24DE530E4664BD4A08781529B3FE" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8ACE14AFC519438F9F7CFA1E57E857AA" + "_857B24DE530E4664BD4A08781529B3FE" { - "Name" = "8:System.Windows.Input.Manipulations.dll" + "Name" = "8:PresentationFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Windows.Input.Manipulations.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\cs\\PresentationFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_7901A3B17F9447C3A81D55DC5033828B" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33534,23 +30871,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8AEA8B4F06244E8EB4329395A8C2E376" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_85942F49F26E4FE7812F87592427749B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=it, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8AEA8B4F06244E8EB4329395A8C2E376" + "_85942F49F26E4FE7812F87592427749B" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:System.Drawing.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\it\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Drawing.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_4CEEF74C3F5448F59C3FB9AE7B166CD7" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33565,23 +30902,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8B357B058AA9E7346030D4EE55729A68" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8765771DDE4A840EC489FFEEE5E7780A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Tokens, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Logging.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8B357B058AA9E7346030D4EE55729A68" + "_8765771DDE4A840EC489FFEEE5E7780A" { - "Name" = "8:Microsoft.IdentityModel.Tokens.dll" + "Name" = "8:Microsoft.Extensions.Logging.Abstractions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.IdentityModel.Tokens.dll" + "SourcePath" = "8:Microsoft.Extensions.Logging.Abstractions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33596,23 +30933,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8BB9413DD232277D8EC384477B23E618" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_87840206D46747A097E4ED2B15D78CFA" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.DiagnosticSource, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Ping, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8BB9413DD232277D8EC384477B23E618" + "_87840206D46747A097E4ED2B15D78CFA" { - "Name" = "8:System.Diagnostics.DiagnosticSource.dll" + "Name" = "8:System.Net.Ping.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Diagnostics.DiagnosticSource.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.Ping.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33624,26 +30961,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8C247F70094F1646915D86F80E1A0FF1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_87BB8990111D99E1991964B5E9453719" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Process, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.RuntimeInformation, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8C247F70094F1646915D86F80E1A0FF1" + "_87BB8990111D99E1991964B5E9453719" { - "Name" = "8:System.Diagnostics.Process.dll" + "Name" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Diagnostics.Process.dll" + "SourcePath" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33658,23 +30995,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8CED62AA275E4E2790356B9C26CE8DED" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_88469FDDED8C4BF399DB4ABD4605D307" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=it, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Console, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8CED62AA275E4E2790356B9C26CE8DED" + "_88469FDDED8C4BF399DB4ABD4605D307" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:System.Console.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\it\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Console.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33866903D6804194A4096F8D1E34C9F3" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33689,23 +31026,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8D462AAC0EC94F7D9A54CAAF190F9061" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8855F5D542A04033AE1FCAC6E7CB6389" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8D462AAC0EC94F7D9A54CAAF190F9061" + "_8855F5D542A04033AE1FCAC6E7CB6389" { - "Name" = "8:System.Reflection.Extensions.dll" + "Name" = "8:UIAutomationClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Reflection.Extensions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\de\\UIAutomationClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_05DBECC2336740CDB09A80EB68B7B14F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33720,23 +31057,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8D916F703BFB47DEB61E0FF69D9F6189" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_887286F4C29C1F45FAF43D3E3165DD9B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.TextWriterTraceListener, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Reflection.DispatchProxy, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8D916F703BFB47DEB61E0FF69D9F6189" + "_887286F4C29C1F45FAF43D3E3165DD9B" { - "Name" = "8:System.Diagnostics.TextWriterTraceListener.dll" + "Name" = "8:System.Reflection.DispatchProxy.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Diagnostics.TextWriterTraceListener.dll" + "SourcePath" = "8:System.Reflection.DispatchProxy.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33748,26 +31085,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8DA7C6C81DDC4F94A07D257BE53DF8B3" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_88A93AF143EDA9404DBDD0F9AF0E3A8E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient, Version=6.0.0.0, Culture=neutral, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Data.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8DA7C6C81DDC4F94A07D257BE53DF8B3" + "_88A93AF143EDA9404DBDD0F9AF0E3A8E" { - "Name" = "8:Microsoft.Data.SqlClient.dll" + "Name" = "8:System.Data.Common.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.Data.SqlClient.dll" + "SourcePath" = "8:System.Data.Common.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33779,26 +31116,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8DB50A0A96D84033B91BF92B1EB35899" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_88B4F9E12DA3A564E867789D16238F81" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8DB50A0A96D84033B91BF92B1EB35899" + "_88B4F9E12DA3A564E867789D16238F81" { - "Name" = "8:PresentationFramework.resources.dll" + "Name" = "8:System.Security.Cryptography.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pl\\PresentationFramework.resources.dll" + "SourcePath" = "8:System.Security.Cryptography.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33ECECC7E762456A9E89108B3C562998" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33810,26 +31147,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8FB8AFCDABF8452F83DE8869F746A7BC" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8988F38293E6443C82ED10D12481699D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Loader, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8FB8AFCDABF8452F83DE8869F746A7BC" + "_8988F38293E6443C82ED10D12481699D" { - "Name" = "8:System.Runtime.Loader.dll" + "Name" = "8:System.IO.Compression.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Runtime.Loader.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.Compression.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33844,23 +31181,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_90951E8E6B5340689008B41EDD3A3F79" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_89C50D3BE2F9490EBB5D778B96C32C9E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Housing, Version=1.0.0.0, Culture=neutral, processorArchitecture=AMD64" "ScatterAssemblies" { - "_90951E8E6B5340689008B41EDD3A3F79" + "_89C50D3BE2F9490EBB5D778B96C32C9E" { - "Name" = "8:UIAutomationTypes.resources.dll" + "Name" = "8:Housing.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\tr\\UIAutomationTypes.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Housing.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F3F3E806FBD0440F983B77DA02BEF5A8" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33875,23 +31212,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_90FBC11A12284200A19D1869ED0A1E1D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8A1BBE2E8DEC4DAFBCC14BDC7E027B48" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Tokens, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_90FBC11A12284200A19D1869ED0A1E1D" + "_8A1BBE2E8DEC4DAFBCC14BDC7E027B48" { - "Name" = "8:UIAutomationTypes.resources.dll" + "Name" = "8:Microsoft.IdentityModel.Tokens.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pt-BR\\UIAutomationTypes.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.IdentityModel.Tokens.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_9A8437D0ADE7402E8451ABF67C350698" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33906,23 +31243,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9103E051B4A148C2AE2B438C56464029" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8A2729C4F323C0E2EFEB67AC17F2900C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Compression.ZipFile, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9103E051B4A148C2AE2B438C56464029" + "_8A2729C4F323C0E2EFEB67AC17F2900C" { - "Name" = "8:PresentationUI.resources.dll" + "Name" = "8:System.IO.Compression.ZipFile.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ja\\PresentationUI.resources.dll" + "SourcePath" = "8:System.IO.Compression.ZipFile.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_98051D1C933E479E8031502C52F83D92" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33934,26 +31271,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_917CF3652B6247629F893344D40AB128" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8A42A9274EFB189CCEE03074E79EB5DC" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading.Tasks.Parallel, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_917CF3652B6247629F893344D40AB128" + "_8A42A9274EFB189CCEE03074E79EB5DC" { - "Name" = "8:System.Net.Http.dll" + "Name" = "8:System.Threading.Tasks.Parallel.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.Http.dll" + "SourcePath" = "8:System.Threading.Tasks.Parallel.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33965,26 +31302,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_925C5C1FEF5A4F7F85BBA1BEA484F130" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8A48519D23634D2F9EC22ECF0A14A3CC" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Abstractions, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ObjectModel, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_925C5C1FEF5A4F7F85BBA1BEA484F130" + "_8A48519D23634D2F9EC22ECF0A14A3CC" { - "Name" = "8:Microsoft.IdentityModel.Abstractions.dll" + "Name" = "8:System.ObjectModel.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.IdentityModel.Abstractions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.ObjectModel.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -33999,23 +31336,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_92684EA6B6C848E196808226672D7230" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8A9A64A682FD4961AF608A5C9A1D3A2A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=zh-Hans, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_92684EA6B6C848E196808226672D7230" + "_8A9A64A682FD4961AF608A5C9A1D3A2A" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:UIAutomationTypes.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hans\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\cs\\UIAutomationTypes.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_A526A21B472242C9B6F4662E9D05A435" + "Folder" = "8:_7901A3B17F9447C3A81D55DC5033828B" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34030,23 +31367,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9298A48B5D8B46C495B29CC9AA5D510F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8B79E641FCED4F83AFC0AB850BD604D7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Formatters, Version=8.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9298A48B5D8B46C495B29CC9AA5D510F" + "_8B79E641FCED4F83AFC0AB850BD604D7" { - "Name" = "8:PresentationUI.resources.dll" + "Name" = "8:System.Runtime.Serialization.Formatters.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hant\\PresentationUI.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Runtime.Serialization.Formatters.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_FFD6EAF1B3444345AC6B6F35CA58BF38" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34061,23 +31398,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_934419EC0632F1868B14A1C07AB5EEF6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8B7D01F246DC495996E2A46DB76D4F84" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.VisualBasic.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Pkcs, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_934419EC0632F1868B14A1C07AB5EEF6" + "_8B7D01F246DC495996E2A46DB76D4F84" { - "Name" = "8:Microsoft.VisualBasic.Core.dll" + "Name" = "8:System.Security.Cryptography.Pkcs.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.VisualBasic.Core.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.Cryptography.Pkcs.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34089,26 +31426,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9369A854E29045B69C5DBCF963B99BF6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8C36F045415C427CBAE31BE41C9ED701" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Data.DataSetExtensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9369A854E29045B69C5DBCF963B99BF6" + "_8C36F045415C427CBAE31BE41C9ED701" { - "Name" = "8:System.Data.DataSetExtensions.dll" + "Name" = "8:UIAutomationClientSideProviders.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Data.DataSetExtensions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hans\\UIAutomationClientSideProviders.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_76359F5BF5894CC19460472A07F40277" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34123,23 +31460,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_93A9D43033340E6AC9CD6CB947BDC85C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8CA777642BA7AFFEAE6A555CEFA540D1" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Intrinsics, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Requests, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_93A9D43033340E6AC9CD6CB947BDC85C" + "_8CA777642BA7AFFEAE6A555CEFA540D1" { - "Name" = "8:System.Runtime.Intrinsics.dll" + "Name" = "8:System.Net.Requests.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.Intrinsics.dll" + "SourcePath" = "8:System.Net.Requests.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34154,23 +31491,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_93D38D3AABD741FEA3FAE5F12673BA4E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8CC35151D8EB44179879DD6E1A3FEEBE" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Bcl.AsyncInterfaces, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Linq.Queryable, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_93D38D3AABD741FEA3FAE5F12673BA4E" + "_8CC35151D8EB44179879DD6E1A3FEEBE" { - "Name" = "8:Microsoft.Bcl.AsyncInterfaces.dll" + "Name" = "8:System.Linq.Queryable.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.Bcl.AsyncInterfaces.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Linq.Queryable.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34185,23 +31522,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_93DAD49FD21243B0903DE9ECFCADD0D6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8CDABB1304BF41D6B6AB6DE33D2B4BE7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XDocument, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_93DAD49FD21243B0903DE9ECFCADD0D6" + "_8CDABB1304BF41D6B6AB6DE33D2B4BE7" { - "Name" = "8:System.Xml.XDocument.dll" + "Name" = "8:netstandard.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Xml.XDocument.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\netstandard.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34216,23 +31553,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_94628A5BD0AA4269AC5D4EFDDD7B19F6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8CF037BE3CB64FF881475DFEA1AD1989" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.Handles, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_94628A5BD0AA4269AC5D4EFDDD7B19F6" + "_8CF037BE3CB64FF881475DFEA1AD1989" { - "Name" = "8:System.dll" + "Name" = "8:System.Runtime.Handles.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Runtime.Handles.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34247,54 +31584,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9545603599F3A85DE070D94A8CE1F201" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8CF03875B4957823DB3256163B0305BB" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Resources.Writer, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_9545603599F3A85DE070D94A8CE1F201" - { - "Name" = "8:System.Resources.Writer.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Resources.Writer.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_95E19BAF64801E12E1F4F108490124BD" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.X509Certificates, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.IO.Compression.FileSystem, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_95E19BAF64801E12E1F4F108490124BD" + "_8CF03875B4957823DB3256163B0305BB" { - "Name" = "8:System.Security.Cryptography.X509Certificates.dll" + "Name" = "8:System.IO.Compression.FileSystem.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.Cryptography.X509Certificates.dll" + "SourcePath" = "8:System.IO.Compression.FileSystem.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34309,23 +31615,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_95F91B2628F84E108914858D305D584A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8D020173A86143AF88BECB2760066FD1" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_95F91B2628F84E108914858D305D584A" + "_8D020173A86143AF88BECB2760066FD1" { "Name" = "8:ReachFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\tr\\ReachFramework.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pl\\ReachFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F3F3E806FBD0440F983B77DA02BEF5A8" + "Folder" = "8:_C688DABCFD5B492EB58182172839DAB4" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34340,23 +31646,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_95FA2F22712340978792F943907E95B4" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8E44223A3DCA43E48F5BBBD55992A4CC" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Pipelines, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Dynamic.Runtime, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_95FA2F22712340978792F943907E95B4" + "_8E44223A3DCA43E48F5BBBD55992A4CC" { - "Name" = "8:System.IO.Pipelines.dll" + "Name" = "8:System.Dynamic.Runtime.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.Pipelines.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Dynamic.Runtime.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34371,23 +31677,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_96E7CFD075BE4B4996422F4F207A4277" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8F59FC9529DC0C5DC4D6F0007F474362" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Private.Xml, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_96E7CFD075BE4B4996422F4F207A4277" + "_8F59FC9529DC0C5DC4D6F0007F474362" { - "Name" = "8:UIAutomationClientSideProviders.resources.dll" + "Name" = "8:System.Private.Xml.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\es\\UIAutomationClientSideProviders.resources.dll" + "SourcePath" = "8:System.Private.Xml.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_319F794A01F24DA7B010B84BF5746B1F" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34399,26 +31705,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_96F7E032C1DE4C7EBB9AE5F67ADE31BD" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8FBACFC9493D429E867EA837DD8FD344" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=ko, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.CompilerServices.Unsafe, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_96F7E032C1DE4C7EBB9AE5F67ADE31BD" + "_8FBACFC9493D429E867EA837DD8FD344" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:System.Runtime.CompilerServices.Unsafe.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\ko\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Runtime.CompilerServices.Unsafe.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_82E79E0E3EE74769A45AF61DCC289A07" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34433,43 +31739,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_96FB075AAC644471A449F39F62493516" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_903B6A4EF47E43C5B1EF318254F0FC56" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ClientModel, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Private.Xml, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_96FB075AAC644471A449F39F62493516" + "_903B6A4EF47E43C5B1EF318254F0FC56" { - "Name" = "8:System.ClientModel.dll" + "Name" = "8:System.Private.Xml.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\System.ClientModel.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Private.Xml.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9725212FCDDD49F89B105FBA596A4619" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\linux-bionic-x64\\native\\libSystem.IO.Ports.Native.so" - "TargetName" = "8:libSystem.IO.Ports.Native.so" - "Tag" = "8:" - "Folder" = "8:_2697142346BF40438E6A50DE6F0E0B11" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34484,23 +31770,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9754C304CDCC43F4B00D92DAB5DCE248" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_90485B75D81F42B292D7906C6862947A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Compression.FileSystem, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9754C304CDCC43F4B00D92DAB5DCE248" + "_90485B75D81F42B292D7906C6862947A" { - "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" + "Name" = "8:System.IO.Compression.FileSystem.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hant\\System.Windows.Controls.Ribbon.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.Compression.FileSystem.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_FFD6EAF1B3444345AC6B6F35CA58BF38" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34515,23 +31801,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_97CF2B9129F0469F9E11CAE5A8F78A54" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9075A90FF94D4EBA9C705C1DE345ED92" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_97CF2B9129F0469F9E11CAE5A8F78A54" + "_9075A90FF94D4EBA9C705C1DE345ED92" { - "Name" = "8:UIAutomationProvider.resources.dll" + "Name" = "8:System.Xaml.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ja\\UIAutomationProvider.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hans\\System.Xaml.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_98051D1C933E479E8031502C52F83D92" + "Folder" = "8:_76359F5BF5894CC19460472A07F40277" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34546,23 +31832,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_97E0B4AF7AF74BBEB8AE3E3019C5E916" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_919881645AD445A2BBCB559AB16FC898" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.OpenSsl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Bcl.AsyncInterfaces, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_97E0B4AF7AF74BBEB8AE3E3019C5E916" + "_919881645AD445A2BBCB559AB16FC898" { - "Name" = "8:System.Security.Cryptography.OpenSsl.dll" + "Name" = "8:Microsoft.Bcl.AsyncInterfaces.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.Cryptography.OpenSsl.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.Bcl.AsyncInterfaces.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34577,23 +31863,12 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9806EF3F54C1435E8D39D967381AE086" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_91D399B7524E4CCCAD103DF52D7D9932" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Abstractions, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_9806EF3F54C1435E8D39D967381AE086" - { - "Name" = "8:Microsoft.IdentityModel.Abstractions.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.IdentityModel.Abstractions.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.Compression.Native.dll" + "TargetName" = "8:System.IO.Compression.Native.dll" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34608,23 +31883,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_98D58BF729725C45B60DD0BFF59397B7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9293A235354B49EA9BB13A9B93A7A1D3" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tracing, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_98D58BF729725C45B60DD0BFF59397B7" + "_9293A235354B49EA9BB13A9B93A7A1D3" { - "Name" = "8:System.Diagnostics.Tracing.dll" + "Name" = "8:PresentationCore.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Diagnostics.Tracing.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ru\\PresentationCore.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_3A07FF1E066342A19AABED2888E683D3" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34636,26 +31911,15 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_991EEF88AC3F465395698A49A450AE86" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_92C68CAA75D34889A7F3B710055EC02A" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Intrinsics, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_991EEF88AC3F465395698A49A450AE86" - { - "Name" = "8:System.Runtime.Intrinsics.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Runtime.Intrinsics.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\publish\\setup-win-x64\\clrgcexp.dll" + "TargetName" = "8:clrgcexp.dll" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34670,23 +31934,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_99BC522B469D655DCEEF33E730328007" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9326C1CEE75849B2B20F8C8DA8C6BB7A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient, Version=6.0.0.0, Culture=neutral, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_99BC522B469D655DCEEF33E730328007" + "_9326C1CEE75849B2B20F8C8DA8C6BB7A" { - "Name" = "8:Microsoft.Data.SqlClient.dll" + "Name" = "8:UIAutomationProvider.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.Data.SqlClient.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ja\\UIAutomationProvider.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_EF49A53A2F124808B6DA2E203BD36641" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34698,26 +31962,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_99C527251870413C95F2B9A8CF693728" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_935D659A1E629D9E893364FF0C941167" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Sockets, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Windows, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_99C527251870413C95F2B9A8CF693728" + "_935D659A1E629D9E893364FF0C941167" { - "Name" = "8:System.Net.Sockets.dll" + "Name" = "8:System.Windows.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.Sockets.dll" + "SourcePath" = "8:System.Windows.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34729,26 +31993,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9A2097DF8F4A4217A21041FB7728B506" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_93FC13260F6640339AF6F4C1FBE7C22B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=pt-BR, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9A2097DF8F4A4217A21041FB7728B506" + "_93FC13260F6640339AF6F4C1FBE7C22B" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:System.Windows.Input.Manipulations.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\pt-BR\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ko\\System.Windows.Input.Manipulations.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_7F40B34FEF5D4151BE023D9C9B9765CD" + "Folder" = "8:_506EF00DD33D4ECF9B29B8A5A859CE45" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34763,23 +32027,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9A32D9FCAA964D729A2A49D45B034A7D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9404A6EA40F4A7894ED3D517521AF25C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xml.XPath.XDocument, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9A32D9FCAA964D729A2A49D45B034A7D" + "_9404A6EA40F4A7894ED3D517521AF25C" { - "Name" = "8:WindowsBase.resources.dll" + "Name" = "8:System.Xml.XPath.XDocument.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ja\\WindowsBase.resources.dll" + "SourcePath" = "8:System.Xml.XPath.XDocument.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_98051D1C933E479E8031502C52F83D92" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34791,26 +32055,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9AA9B1640404D837BA8E590A2A7B3FDE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9462BFDDC2C942DE92F9A0DFC9E7A880" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9AA9B1640404D837BA8E590A2A7B3FDE" + "_9462BFDDC2C942DE92F9A0DFC9E7A880" { - "Name" = "8:Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "Name" = "8:ReachFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ru\\ReachFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_3A07FF1E066342A19AABED2888E683D3" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34822,26 +32086,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9AB31158976C4397B8ADF73333928D06" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_94FAD8EAA57C4DB68ED601C6F5F7B54C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework-SystemDrawing, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" "ScatterAssemblies" { - "_9AB31158976C4397B8ADF73333928D06" + "_94FAD8EAA57C4DB68ED601C6F5F7B54C" { - "Name" = "8:PresentationCore.resources.dll" + "Name" = "8:PresentationFramework-SystemDrawing.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pt-BR\\PresentationCore.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\PresentationFramework-SystemDrawing.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_9A8437D0ADE7402E8451ABF67C350698" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34856,23 +32120,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9B2EFE50DAD1458E8932CCF4310BEC9F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_95610503B2974646BD21D4FDCE993A1C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq.Parallel, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ComponentModel.DataAnnotations, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9B2EFE50DAD1458E8932CCF4310BEC9F" + "_95610503B2974646BD21D4FDCE993A1C" { - "Name" = "8:System.Linq.Parallel.dll" + "Name" = "8:System.ComponentModel.DataAnnotations.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Linq.Parallel.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.ComponentModel.DataAnnotations.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34887,23 +32151,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9B37A3A3FB8BCE35DCD0CC69E3F142F1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_95D1BB32E25D6A28E121A3E5AB381063" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.StackTrace, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Runtime, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9B37A3A3FB8BCE35DCD0CC69E3F142F1" + "_95D1BB32E25D6A28E121A3E5AB381063" { - "Name" = "8:System.Diagnostics.StackTrace.dll" + "Name" = "8:System.Runtime.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Diagnostics.StackTrace.dll" + "SourcePath" = "8:System.Runtime.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34918,23 +32182,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9BA073EDFD1A4ABDADCC69D75BFBAF99" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_95E95D512F7447DAA4C6FD50CE087AEA" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Pipes, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9BA073EDFD1A4ABDADCC69D75BFBAF99" + "_95E95D512F7447DAA4C6FD50CE087AEA" { - "Name" = "8:System.Xaml.resources.dll" + "Name" = "8:System.IO.Pipes.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\fr\\System.Xaml.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.Pipes.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_0D6BB22DBA6348629B76C0E2123EBBFD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -34949,43 +32213,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9C09304E7C7F19C2F28AD3B24A77B8CB" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_963AEFEC7C58473BA4C5A9549624357C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Resources.Reader, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.EventLog.Messages, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9C09304E7C7F19C2F28AD3B24A77B8CB" + "_963AEFEC7C58473BA4C5A9549624357C" { - "Name" = "8:System.Resources.Reader.dll" + "Name" = "8:System.Diagnostics.EventLog.Messages.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Resources.Reader.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Diagnostics.EventLog.Messages.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9C6D38A3903843EFB9D69810F6FE4C8C" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.DiaSymReader.Native.amd64.dll" - "TargetName" = "8:Microsoft.DiaSymReader.Native.amd64.dll" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35000,43 +32244,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9C7BC3B28FEF0D6A3C7DF01D18722E6C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_963F226EF01B42FABD1DD7824A0D8DEC" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Xml, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9C7BC3B28FEF0D6A3C7DF01D18722E6C" + "_963F226EF01B42FABD1DD7824A0D8DEC" { - "Name" = "8:System.Security.Cryptography.Xml.dll" + "Name" = "8:PresentationFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.Cryptography.Xml.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\de\\PresentationFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9C98C0AED0FB4AF1BAECADC0D870CF02" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\linux-arm\\native\\libSystem.IO.Ports.Native.so" - "TargetName" = "8:libSystem.IO.Ports.Native.so" - "Tag" = "8:" - "Folder" = "8:_AC9642767D3A46E9B23214D6C8A4CD1B" + "Folder" = "8:_05DBECC2336740CDB09A80EB68B7B14F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35051,23 +32275,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9CB339FE4F29483BBFC63B8DAA58487C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_963F4FE28111B47846C1A486F61E160E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationTypes, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9CB339FE4F29483BBFC63B8DAA58487C" + "_963F4FE28111B47846C1A486F61E160E" { - "Name" = "8:UIAutomationTypes.dll" + "Name" = "8:System.Net.Http.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\UIAutomationTypes.dll" + "SourcePath" = "8:System.Net.Http.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35079,26 +32303,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9D1CC96279B2459A84840D5EF2364F94" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_969FF7796C8282207A4D873D682F5872" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.VisualBasic.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.UnmanagedMemoryStream, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9D1CC96279B2459A84840D5EF2364F94" + "_969FF7796C8282207A4D873D682F5872" { - "Name" = "8:Microsoft.VisualBasic.Core.dll" + "Name" = "8:System.IO.UnmanagedMemoryStream.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.VisualBasic.Core.dll" + "SourcePath" = "8:System.IO.UnmanagedMemoryStream.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35110,26 +32334,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9D74193656DE40FA843C2241CAC84A49" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_975852014F5B4FACBBDF5C881DA76681" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=ru, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.TextWriterTraceListener, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9D74193656DE40FA843C2241CAC84A49" + "_975852014F5B4FACBBDF5C881DA76681" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:System.Diagnostics.TextWriterTraceListener.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\ru\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Diagnostics.TextWriterTraceListener.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_97331A14D99E4AE0AEF6F4ADF9756C32" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35144,23 +32368,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9D8B9BE9F9CB11CC9BE6E68CE877BD3E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_97A8C91BA51847EE91CFF4DB840161FA" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Timer, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.SecureString, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9D8B9BE9F9CB11CC9BE6E68CE877BD3E" + "_97A8C91BA51847EE91CFF4DB840161FA" { - "Name" = "8:System.Threading.Timer.dll" + "Name" = "8:System.Security.SecureString.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Threading.Timer.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.SecureString.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35172,26 +32396,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9DCC3259FB4363AF666EE00687ABAC68" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_97ADDCFDE8E14E329E2E053CF1CBD24E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.JavaScript, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9DCC3259FB4363AF666EE00687ABAC68" + "_97ADDCFDE8E14E329E2E053CF1CBD24E" { - "Name" = "8:System.Runtime.InteropServices.JavaScript.dll" + "Name" = "8:PresentationUI.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.InteropServices.JavaScript.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pl\\PresentationUI.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_C688DABCFD5B492EB58182172839DAB4" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35203,26 +32427,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9E7E56BFEC0D4ECFBC08ABED74952809" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_97B853BD0FBD4246A35CA4AC6699E141" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9E7E56BFEC0D4ECFBC08ABED74952809" + "_97B853BD0FBD4246A35CA4AC6699E141" { - "Name" = "8:System.Windows.Input.Manipulations.resources.dll" + "Name" = "8:PresentationCore.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\tr\\System.Windows.Input.Manipulations.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hant\\PresentationCore.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F3F3E806FBD0440F983B77DA02BEF5A8" + "Folder" = "8:_07FEAE190090436A957E9601C38A7170" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35237,23 +32461,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9E8E97A46BDC890CCE460FAF9E5D9FD1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_97FB68AE477D4EE690B0048F7FB40089" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Logging, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9E8E97A46BDC890CCE460FAF9E5D9FD1" + "_97FB68AE477D4EE690B0048F7FB40089" { - "Name" = "8:Microsoft.IdentityModel.Logging.dll" + "Name" = "8:UIAutomationClientSideProviders.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.IdentityModel.Logging.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ja\\UIAutomationClientSideProviders.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_EF49A53A2F124808B6DA2E203BD36641" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35265,26 +32489,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9F396770E1B644CA889B7ED6A58E40DA" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9818F96B07084AA4B619A0A41EE9C6B5" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.DiagnosticSource, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework.Classic, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" "ScatterAssemblies" { - "_9F396770E1B644CA889B7ED6A58E40DA" + "_9818F96B07084AA4B619A0A41EE9C6B5" { - "Name" = "8:System.Diagnostics.DiagnosticSource.dll" + "Name" = "8:PresentationFramework.Classic.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Diagnostics.DiagnosticSource.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\PresentationFramework.Classic.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35299,23 +32523,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9F48ACE0842F4C3CAFB857607C5B5E5E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9821F745AE6C45F7B26812A8F0D23292" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9F48ACE0842F4C3CAFB857607C5B5E5E" + "_9821F745AE6C45F7B26812A8F0D23292" { - "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" + "Name" = "8:UIAutomationTypes.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\de\\System.Windows.Controls.Ribbon.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\tr\\UIAutomationTypes.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_8C6BAC487E12445AAC4169B115BE8835" + "Folder" = "8:_D14333D71D9548B993E7562D7B181D97" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35330,23 +32554,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9F9DBDF1BE674422A100529C9BAE0E4A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_98BDFB20000E4419AA0EA3BD23B4CE59" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq.Queryable, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Win32.Registry.AccessControl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_9F9DBDF1BE674422A100529C9BAE0E4A" + "_98BDFB20000E4419AA0EA3BD23B4CE59" { - "Name" = "8:System.Linq.Queryable.dll" + "Name" = "8:Microsoft.Win32.Registry.AccessControl.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Linq.Queryable.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.Win32.Registry.AccessControl.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35361,43 +32585,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9FD85F6F04D04B19A40622A8B4148853" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\wpfgfx_cor3.dll" - "TargetName" = "8:wpfgfx_cor3.dll" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A0675ECA63854ECA92C38EEF71748957" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9950BFEA0E494DFDBF222F8D162723FB" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Formats.Nrbf, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_A0675ECA63854ECA92C38EEF71748957" + "_9950BFEA0E494DFDBF222F8D162723FB" { - "Name" = "8:System.Xml.dll" + "Name" = "8:System.Formats.Nrbf.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Xml.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Formats.Nrbf.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35412,43 +32616,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A0CAEAFA8AF476AE9779326B71CAD208" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_995CD17ECC5845B38F190F2E3610E30E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Packaging, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_A0CAEAFA8AF476AE9779326B71CAD208" + "_995CD17ECC5845B38F190F2E3610E30E" { - "Name" = "8:System.IO.Packaging.dll" + "Name" = "8:PresentationUI.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.Packaging.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\cs\\PresentationUI.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A1D9B0B4A7FD49CD972F88819300D737" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\clretwrc.dll" - "TargetName" = "8:clretwrc.dll" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_7901A3B17F9447C3A81D55DC5033828B" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35463,23 +32647,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A28626C07DA34FBCBD3FE29D07AA0E56" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9987ECEB75A5EEE30DB350CE077CA265" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.FileVersionInfo, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.Debug, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_A28626C07DA34FBCBD3FE29D07AA0E56" + "_9987ECEB75A5EEE30DB350CE077CA265" { - "Name" = "8:System.Diagnostics.FileVersionInfo.dll" + "Name" = "8:System.Diagnostics.Debug.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Diagnostics.FileVersionInfo.dll" + "SourcePath" = "8:System.Diagnostics.Debug.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35491,26 +32675,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A2C4BBDA6C653F878CF9F09DDB19EB67" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_999A55ECDBA24B00AEE2A5A207F8030D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Tasks.Dataflow, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework.AeroLite, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" "ScatterAssemblies" { - "_A2C4BBDA6C653F878CF9F09DDB19EB67" + "_999A55ECDBA24B00AEE2A5A207F8030D" { - "Name" = "8:System.Threading.Tasks.Dataflow.dll" + "Name" = "8:PresentationFramework.AeroLite.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Threading.Tasks.Dataflow.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\PresentationFramework.AeroLite.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35522,26 +32706,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A2ECB5B1C76C7E107370542EE58E7B69" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_99AD114962244FAE9D19BEFCFAAB4FAF" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Encoding, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_A2ECB5B1C76C7E107370542EE58E7B69" + "_99AD114962244FAE9D19BEFCFAAB4FAF" { - "Name" = "8:System.Security.Cryptography.Encoding.dll" + "Name" = "8:System.Windows.Input.Manipulations.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.Cryptography.Encoding.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ja\\System.Windows.Input.Manipulations.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_EF49A53A2F124808B6DA2E203BD36641" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35553,26 +32737,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A39781889AA44D63B159B715850377F3" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9A524C86B3B34446AC4F83D726A76918" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=cs, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" "ScatterAssemblies" { - "_A39781889AA44D63B159B715850377F3" + "_9A524C86B3B34446AC4F83D726A76918" { - "Name" = "8:UIAutomationClient.resources.dll" + "Name" = "8:Microsoft.Data.SqlClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hant\\UIAutomationClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\cs\\Microsoft.Data.SqlClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_FFD6EAF1B3444345AC6B6F35CA58BF38" + "Folder" = "8:_7901A3B17F9447C3A81D55DC5033828B" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35587,23 +32771,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A4F11A43CC3F7ABCD7EF38C7860D4BF1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9A70E147EEAD7EA18E5190D6B05B2222" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.TraceSource, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Logging, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_A4F11A43CC3F7ABCD7EF38C7860D4BF1" + "_9A70E147EEAD7EA18E5190D6B05B2222" { - "Name" = "8:System.Diagnostics.TraceSource.dll" + "Name" = "8:Microsoft.IdentityModel.Logging.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Diagnostics.TraceSource.dll" + "SourcePath" = "8:Microsoft.IdentityModel.Logging.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35618,23 +32802,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A5281AE19E3C0466830CC797A9C17602" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9AA5085F56494F5FB880DDAE22805147" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Caching.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_A5281AE19E3C0466830CC797A9C17602" + "_9AA5085F56494F5FB880DDAE22805147" { - "Name" = "8:Microsoft.Extensions.Caching.Abstractions.dll" + "Name" = "8:UIAutomationClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.Extensions.Caching.Abstractions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\it\\UIAutomationClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_154C18835E314DCA89F39AA7646FFC12" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35646,15 +32830,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A54517EE25194FC590EB2029F97FC7C3" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9AF4DF764E3D402FA7B373767289455C" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\D3DCompiler_47_cor3.dll" - "TargetName" = "8:D3DCompiler_47_cor3.dll" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" + "ScatterAssemblies" + { + "_9AF4DF764E3D402FA7B373767289455C" + { + "Name" = "8:UIAutomationClientSideProviders.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\UIAutomationClientSideProviders.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35669,23 +32864,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A6339429BB9B4B8993C3D9BB29ED86EE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9C39394819CD481F9B4B7927EFCE7082" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.Encodings.Web, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ServiceProcess, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_A6339429BB9B4B8993C3D9BB29ED86EE" + "_9C39394819CD481F9B4B7927EFCE7082" { - "Name" = "8:System.Text.Encodings.Web.dll" + "Name" = "8:System.ServiceProcess.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Text.Encodings.Web.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.ServiceProcess.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35700,23 +32895,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A710F9451C434CE8BA9E9C48BD42D070" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9C4BE12B0CD74B7CBBD18F04CB7C4D82" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ComponentModel.Annotations, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_A710F9451C434CE8BA9E9C48BD42D070" + "_9C4BE12B0CD74B7CBBD18F04CB7C4D82" { - "Name" = "8:System.Xaml.resources.dll" + "Name" = "8:System.ComponentModel.Annotations.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ja\\System.Xaml.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.ComponentModel.Annotations.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_98051D1C933E479E8031502C52F83D92" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35731,23 +32926,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A713D419BA6D49E5878EB49FED28B813" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9C701E2C9CEBECFB3063D33552E310F7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XPath.XDocument, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_A713D419BA6D49E5878EB49FED28B813" + "_9C701E2C9CEBECFB3063D33552E310F7" { - "Name" = "8:System.Xml.XPath.XDocument.dll" + "Name" = "8:System.Net.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Xml.XPath.XDocument.dll" + "SourcePath" = "8:System.Net.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35759,26 +32954,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A73B77AB52A14A06924029907A4E19B1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9C76510F27914A629C0F3A36FD75F5E9" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_A73B77AB52A14A06924029907A4E19B1" + "_9C76510F27914A629C0F3A36FD75F5E9" { - "Name" = "8:System.ComponentModel.Primitives.dll" + "Name" = "8:UIAutomationClientSideProviders.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.ComponentModel.Primitives.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\it\\UIAutomationClientSideProviders.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_154C18835E314DCA89F39AA7646FFC12" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35793,12 +32988,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7627351C23344B288E5619E09FF3A3E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9CA2658ACD8741F43E77E56D9F53DCD5" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\linux-musl-arm64\\native\\libSystem.IO.Ports.Native.so" - "TargetName" = "8:libSystem.IO.Ports.Native.so" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Net.WebSockets.Client, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_9CA2658ACD8741F43E77E56D9F53DCD5" + { + "Name" = "8:System.Net.WebSockets.Client.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.Net.WebSockets.Client.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_69C847C8CBB1435D84DE925223C296A4" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35810,15 +33016,57 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A872892F28FE4A399CA1605C6C7FD557" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9CF01A79ADC6DB936EE336401703AAA4" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\win-x64\\native\\Microsoft.Data.SqlClient.SNI.dll" - "TargetName" = "8:Microsoft.Data.SqlClient.SNI.dll" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Xml.XDocument, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_9CF01A79ADC6DB936EE336401703AAA4" + { + "Name" = "8:System.Xml.XDocument.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.Xml.XDocument.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9EC593BE54DE4B388AAD3CA5F94275DD" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.DirectoryServices, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_9EC593BE54DE4B388AAD3CA5F94275DD" + { + "Name" = "8:System.DirectoryServices.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.DirectoryServices.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_2BAA1CAAF9E34A7D9978D49DFD9D1DEF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35833,23 +33081,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A881EE6EB47C82273E9DF4FF3FF06A7A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A03E7BC3D09F4E36BCFAFE25E18348EC" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Private.DataContractSerialization, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_A881EE6EB47C82273E9DF4FF3FF06A7A" + "_A03E7BC3D09F4E36BCFAFE25E18348EC" { - "Name" = "8:System.Private.DataContractSerialization.dll" + "Name" = "8:System.Runtime.InteropServices.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Private.DataContractSerialization.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Runtime.InteropServices.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35861,26 +33109,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A8F6731403774C40A8E480A587DFE9C2" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A1B9500035D84C3FA072C1A6EF911D37" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.NetworkInformation, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_A8F6731403774C40A8E480A587DFE9C2" + "_A1B9500035D84C3FA072C1A6EF911D37" { - "Name" = "8:System.Net.NetworkInformation.dll" + "Name" = "8:System.Xaml.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.NetworkInformation.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pl\\System.Xaml.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_C688DABCFD5B492EB58182172839DAB4" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35895,23 +33143,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A9308BDDA6FB471CB3CAE858EC21578B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A1E352E2ED54416F9149690F55C47039" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ServiceProcess, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_A9308BDDA6FB471CB3CAE858EC21578B" + "_A1E352E2ED54416F9149690F55C47039" { - "Name" = "8:System.ServiceProcess.dll" + "Name" = "8:System.Numerics.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.ServiceProcess.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Numerics.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35926,23 +33174,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AA364DFC6D0E65A0D2C0BE1273C187A6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A31F3F958D4547698677DD3F80B8FB27" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Buffers, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Web.HttpUtility, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_AA364DFC6D0E65A0D2C0BE1273C187A6" + "_A31F3F958D4547698677DD3F80B8FB27" { - "Name" = "8:System.Buffers.dll" + "Name" = "8:System.Web.HttpUtility.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Buffers.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Web.HttpUtility.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35954,26 +33202,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AA74C26107BC58CE2108D0D6677BECE1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A32E83D14D6B70C3D81A82C2C8943DBF" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Win32.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_AA74C26107BC58CE2108D0D6677BECE1" + "_A32E83D14D6B70C3D81A82C2C8943DBF" { - "Name" = "8:System.Reflection.dll" + "Name" = "8:Microsoft.Win32.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Reflection.dll" + "SourcePath" = "8:Microsoft.Win32.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -35988,12 +33236,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB6160198BD944ED9FDA8F39CC308976" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A3339262B2B799F31F86F22E1EDCB371" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\hostfxr.dll" - "TargetName" = "8:hostfxr.dll" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Net.WebSockets, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_A3339262B2B799F31F86F22E1EDCB371" + { + "Name" = "8:System.Net.WebSockets.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.Net.WebSockets.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36005,26 +33264,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AB71A1548839486383CCBE843D38D197" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A373F853496F48BCB73085CEC13477DE" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=ja, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" "ScatterAssemblies" { - "_AB71A1548839486383CCBE843D38D197" + "_A373F853496F48BCB73085CEC13477DE" { - "Name" = "8:UIAutomationClient.resources.dll" + "Name" = "8:Microsoft.Data.SqlClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ru\\UIAutomationClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ja\\Microsoft.Data.SqlClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F050AFEC75CD404984C24AA71672DBCD" + "Folder" = "8:_EF49A53A2F124808B6DA2E203BD36641" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36039,23 +33298,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ABCEABC5D08D44868FB094D55A3D2E40" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A382D02B948C4B54803DC488B33F0B3A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_ABCEABC5D08D44868FB094D55A3D2E40" + "_A382D02B948C4B54803DC488B33F0B3A" { - "Name" = "8:PresentationCore.resources.dll" + "Name" = "8:System.Windows.Extensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pl\\PresentationCore.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Windows.Extensions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33ECECC7E762456A9E89108B3C562998" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36070,23 +33329,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AC9B28E0D99E4F1F515BA0BBE9459CE5" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A3B2DD710F4843D781A8372B4443A708" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Transactions.Local, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.JsonWebTokens, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_AC9B28E0D99E4F1F515BA0BBE9459CE5" + "_A3B2DD710F4843D781A8372B4443A708" { - "Name" = "8:System.Transactions.Local.dll" + "Name" = "8:Microsoft.IdentityModel.JsonWebTokens.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Transactions.Local.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.IdentityModel.JsonWebTokens.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36098,26 +33357,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ACC9D7826CBE472A8766CAF892A6B8A9" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A4134201B9E55E9C7D6CC50C10CFE337" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.Watcher, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.MemoryMappedFiles, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_ACC9D7826CBE472A8766CAF892A6B8A9" + "_A4134201B9E55E9C7D6CC50C10CFE337" { - "Name" = "8:System.IO.FileSystem.Watcher.dll" + "Name" = "8:System.IO.MemoryMappedFiles.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.FileSystem.Watcher.dll" + "SourcePath" = "8:System.IO.MemoryMappedFiles.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36129,26 +33388,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AD0702E6A985495B973E198A50FD62EB" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A54C36C6AF724C4298C1C44B711EEBA1" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework-SystemDrawing, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Collections.Specialized, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_AD0702E6A985495B973E198A50FD62EB" + "_A54C36C6AF724C4298C1C44B711EEBA1" { - "Name" = "8:PresentationFramework-SystemDrawing.dll" + "Name" = "8:System.Collections.Specialized.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\PresentationFramework-SystemDrawing.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Collections.Specialized.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36163,23 +33422,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AD807159398E42A4AFF9F5DB174493FF" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A599A7EE92D343398580075929DFA7A1" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tracing, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_AD807159398E42A4AFF9F5DB174493FF" + "_A599A7EE92D343398580075929DFA7A1" { - "Name" = "8:System.Windows.Input.Manipulations.resources.dll" + "Name" = "8:System.Diagnostics.Tracing.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ru\\System.Windows.Input.Manipulations.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Diagnostics.Tracing.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F050AFEC75CD404984C24AA71672DBCD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36194,23 +33453,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AE8F8E5D1623CFC21485A926C163EE58" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A5C386CA7E4D475C8869A687EBEF8A04" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections.Specialized, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.Watcher, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_AE8F8E5D1623CFC21485A926C163EE58" + "_A5C386CA7E4D475C8869A687EBEF8A04" { - "Name" = "8:System.Collections.Specialized.dll" + "Name" = "8:System.IO.FileSystem.Watcher.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Collections.Specialized.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.FileSystem.Watcher.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36222,26 +33481,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AE9BF056D28749AC920B22FB0FB3F2ED" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A5CBCB7AEA5649EF8D26C13CD74B09E2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Cng, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_AE9BF056D28749AC920B22FB0FB3F2ED" + "_A5CBCB7AEA5649EF8D26C13CD74B09E2" { - "Name" = "8:UIAutomationClientSideProviders.resources.dll" + "Name" = "8:System.Security.Cryptography.Cng.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pt-BR\\UIAutomationClientSideProviders.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.Cryptography.Cng.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_9A8437D0ADE7402E8451ABF67C350698" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36256,23 +33515,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AECE1BCC2F32BA06761A48F1FC930DB9" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A5CFE4C8CD314D6B81626D8C947B6558" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression.FileSystem, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_AECE1BCC2F32BA06761A48F1FC930DB9" + "_A5CFE4C8CD314D6B81626D8C947B6558" { - "Name" = "8:System.IO.Compression.FileSystem.dll" + "Name" = "8:UIAutomationProvider.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.Compression.FileSystem.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pt-BR\\UIAutomationProvider.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_FE1199FD2AED473F9607036466985701" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36284,26 +33543,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AED7E1511C6E47C4A7750F30954E4A84" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A65E3D96F4DD434BA582E3757D43997B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XPath, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_AED7E1511C6E47C4A7750F30954E4A84" + "_A65E3D96F4DD434BA582E3757D43997B" { - "Name" = "8:System.Xml.XPath.dll" + "Name" = "8:PresentationUI.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Xml.XPath.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\es\\PresentationUI.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_50D95BB66E0E4F02ABA1951CD4EE263F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36318,23 +33577,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AF0BC99033294CF8AC8EBA1DA757D14B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A693C02331474E77A4360436CBF86CAD" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.FileSystem, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_AF0BC99033294CF8AC8EBA1DA757D14B" + "_A693C02331474E77A4360436CBF86CAD" { - "Name" = "8:UIAutomationTypes.resources.dll" + "Name" = "8:System.IO.FileSystem.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\es\\UIAutomationTypes.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.FileSystem.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_319F794A01F24DA7B010B84BF5746B1F" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36349,23 +33608,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AF2FD3529ACE48B6A5497A6197A020AA" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A76A17A95231B9F651C86B8747D361A7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections.Immutable, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Packaging, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_AF2FD3529ACE48B6A5497A6197A020AA" + "_A76A17A95231B9F651C86B8747D361A7" { - "Name" = "8:System.Collections.Immutable.dll" + "Name" = "8:System.IO.Packaging.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Collections.Immutable.dll" + "SourcePath" = "8:System.IO.Packaging.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36377,26 +33636,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AF99149F6847CCF5CD6229824629EA85" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A7B347FCEC623457F1FF4116DBE26DE9" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ValueTuple, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_AF99149F6847CCF5CD6229824629EA85" + "_A7B347FCEC623457F1FF4116DBE26DE9" { - "Name" = "8:System.IO.FileSystem.Primitives.dll" + "Name" = "8:System.ValueTuple.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.FileSystem.Primitives.dll" + "SourcePath" = "8:System.ValueTuple.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36411,23 +33670,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AFC97D4BF8CAF67F0E21BCC945873488" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A7C7E66B124BB4B955D0308A3B882532" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Mail, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Primitives, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_AFC97D4BF8CAF67F0E21BCC945873488" + "_A7C7E66B124BB4B955D0308A3B882532" { - "Name" = "8:System.Net.Mail.dll" + "Name" = "8:System.Runtime.Serialization.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.Mail.dll" + "SourcePath" = "8:System.Runtime.Serialization.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36442,23 +33701,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B0922AF6E2644FA8A62EBEB3B92ABD04" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A9035D942941788E21A775971D3379AD" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B0922AF6E2644FA8A62EBEB3B92ABD04" + "_A9035D942941788E21A775971D3379AD" { - "Name" = "8:PresentationFramework.resources.dll" + "Name" = "8:Microsoft.Extensions.DependencyInjection.Abstractions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ja\\PresentationFramework.resources.dll" + "SourcePath" = "8:Microsoft.Extensions.DependencyInjection.Abstractions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_98051D1C933E479E8031502C52F83D92" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36470,26 +33729,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B11750BFE84B4302859140E5DB4A6EF7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A959687D5A594B038895659012B722D7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IdentityModel.Tokens.Jwt, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" "ScatterAssemblies" { - "_B11750BFE84B4302859140E5DB4A6EF7" + "_A959687D5A594B038895659012B722D7" { - "Name" = "8:System.IdentityModel.Tokens.Jwt.dll" + "Name" = "8:System.Windows.Input.Manipulations.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IdentityModel.Tokens.Jwt.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Windows.Input.Manipulations.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36504,23 +33763,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B16E542C910B2E0537C34147E3F2A772" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A95F4E8A504CA6B85FA53C01B8AA56B5" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression.ZipFile, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.ValueTuple, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B16E542C910B2E0537C34147E3F2A772" + "_A95F4E8A504CA6B85FA53C01B8AA56B5" { - "Name" = "8:System.IO.Compression.ZipFile.dll" + "Name" = "8:System.ValueTuple.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.Compression.ZipFile.dll" + "SourcePath" = "8:System.ValueTuple.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36535,23 +33794,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B1849DE105A443F195D7510B391D0629" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AA98FEAE530E800F83819D70C36CAF58" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Permissions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B1849DE105A443F195D7510B391D0629" + "_AA98FEAE530E800F83819D70C36CAF58" { - "Name" = "8:System.Security.Permissions.dll" + "Name" = "8:Microsoft.Extensions.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.Permissions.dll" + "SourcePath" = "8:Microsoft.Extensions.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36563,26 +33822,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B1B6C7493CFDE652DA76CFFC346525E5" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AAD83CEDDDC54AAFB0655F23A6225024" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Quic, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework-SystemCore, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" "ScatterAssemblies" { - "_B1B6C7493CFDE652DA76CFFC346525E5" + "_AAD83CEDDDC54AAFB0655F23A6225024" { - "Name" = "8:System.Net.Quic.dll" + "Name" = "8:PresentationFramework-SystemCore.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.Quic.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\PresentationFramework-SystemCore.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36594,26 +33853,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B1BBFEBF17944DFE9CA4380F36886A1E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AB23A8CCABA4466FA9A3CEF8F88BFA2C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=ja, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B1BBFEBF17944DFE9CA4380F36886A1E" + "_AB23A8CCABA4466FA9A3CEF8F88BFA2C" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:mscorlib.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ja\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\mscorlib.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_98051D1C933E479E8031502C52F83D92" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36628,23 +33887,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B2011D514CF04C259ABAA54E70395610" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ABB9C09F16504908BBEF4AF3BF4465BD" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B2011D514CF04C259ABAA54E70395610" + "_ABB9C09F16504908BBEF4AF3BF4465BD" { - "Name" = "8:System.IO.Compression.dll" + "Name" = "8:PresentationFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.Compression.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ru\\PresentationFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_3A07FF1E066342A19AABED2888E683D3" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36659,23 +33918,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B28C76E809A91245E9FA657909D423F4" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ABE0597EE67D334D94800C5C16715381" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Drawing.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Text.Encoding.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B28C76E809A91245E9FA657909D423F4" + "_ABE0597EE67D334D94800C5C16715381" { - "Name" = "8:System.Drawing.Primitives.dll" + "Name" = "8:System.Text.Encoding.Extensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Drawing.Primitives.dll" + "SourcePath" = "8:System.Text.Encoding.Extensions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36690,23 +33949,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B31591AD75144D73B40DF05BAB25B5D6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ABF50DEAD3F44E68B097345106E563D8" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Requests, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Resources.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B31591AD75144D73B40DF05BAB25B5D6" + "_ABF50DEAD3F44E68B097345106E563D8" { - "Name" = "8:System.Net.Requests.dll" + "Name" = "8:System.Resources.Extensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.Requests.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Resources.Extensions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36721,23 +33980,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B37C77462FCA46E0AB014FA0F04FE244" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AC3B8ADF83C9D34956B22A4037FE772E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Identity.Client, Version=4.73.1.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B37C77462FCA46E0AB014FA0F04FE244" + "_AC3B8ADF83C9D34956B22A4037FE772E" { - "Name" = "8:Microsoft.Identity.Client.dll" + "Name" = "8:System.IO.Compression.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.Identity.Client.dll" + "SourcePath" = "8:System.IO.Compression.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36749,26 +34008,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B382B3D55198467A833D4D68A97F3B71" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ACB2FA4C64E6218003881DB86FAE60CD" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Algorithms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B382B3D55198467A833D4D68A97F3B71" + "_ACB2FA4C64E6218003881DB86FAE60CD" { - "Name" = "8:PresentationUI.resources.dll" + "Name" = "8:System.Security.Cryptography.Algorithms.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\tr\\PresentationUI.resources.dll" + "SourcePath" = "8:System.Security.Cryptography.Algorithms.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F3F3E806FBD0440F983B77DA02BEF5A8" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36780,26 +34039,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B45E6D2A938A484B991B5957B2039B7B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ACD09928E29693C35BCC700E40951AEB" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Reflection.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B45E6D2A938A484B991B5957B2039B7B" + "_ACD09928E29693C35BCC700E40951AEB" { - "Name" = "8:WindowsBase.resources.dll" + "Name" = "8:System.Reflection.Extensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\it\\WindowsBase.resources.dll" + "SourcePath" = "8:System.Reflection.Extensions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33866903D6804194A4096F8D1E34C9F3" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36811,26 +34070,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B493379D394F49F2A257ACE3C4BEF216" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AD15467D447B62DDE1BD96FF2B091C31" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Caching.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Identity.Client, Version=4.73.1.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B493379D394F49F2A257ACE3C4BEF216" + "_AD15467D447B62DDE1BD96FF2B091C31" { - "Name" = "8:Microsoft.Extensions.Caching.Abstractions.dll" + "Name" = "8:Microsoft.Identity.Client.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.Extensions.Caching.Abstractions.dll" + "SourcePath" = "8:Microsoft.Identity.Client.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36842,26 +34101,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B4A2F77BB0CF4ECEB26E7E3D2294CF4F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AD573111A7F14C01ABAD569CED96D350" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B4A2F77BB0CF4ECEB26E7E3D2294CF4F" + "_AD573111A7F14C01ABAD569CED96D350" { - "Name" = "8:UIAutomationClientSideProviders.resources.dll" + "Name" = "8:System.Net.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\tr\\UIAutomationClientSideProviders.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F3F3E806FBD0440F983B77DA02BEF5A8" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36876,23 +34135,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B4DC9680AAC199071BAEC00BA7B52A9D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AD652B25F4FB47219D9D111AD130AC03" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.FileVersionInfo, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Win32.Registry, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B4DC9680AAC199071BAEC00BA7B52A9D" + "_AD652B25F4FB47219D9D111AD130AC03" { - "Name" = "8:System.Diagnostics.FileVersionInfo.dll" + "Name" = "8:Microsoft.Win32.Registry.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Diagnostics.FileVersionInfo.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.Win32.Registry.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36904,26 +34163,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B4F82C482A754198A8A7FEAE40546071" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AD6DC0D31D46E64A927125525FF9B3E9" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ObjectModel, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B4F82C482A754198A8A7FEAE40546071" + "_AD6DC0D31D46E64A927125525FF9B3E9" { - "Name" = "8:UIAutomationClientSideProviders.resources.dll" + "Name" = "8:System.ObjectModel.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\de\\UIAutomationClientSideProviders.resources.dll" + "SourcePath" = "8:System.ObjectModel.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_8C6BAC487E12445AAC4169B115BE8835" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36935,26 +34194,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B5127E434BF4494E8356C0D8F2633803" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ADAC2A1C6F7847D680023FD8B62CE763" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Azure.Identity, Version=1.14.2.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Reflection.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B5127E434BF4494E8356C0D8F2633803" + "_ADAC2A1C6F7847D680023FD8B62CE763" { - "Name" = "8:Azure.Identity.dll" + "Name" = "8:System.Reflection.Extensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Azure.Identity.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Reflection.Extensions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36969,23 +34228,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B5615E73CC7BA3BF0317A4656D181CB5" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ADFF45CA46874E0AA1CDD575EDFB20C4" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XmlDocument, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xaml, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" "ScatterAssemblies" { - "_B5615E73CC7BA3BF0317A4656D181CB5" + "_ADFF45CA46874E0AA1CDD575EDFB20C4" { - "Name" = "8:System.Xml.XmlDocument.dll" + "Name" = "8:System.Xaml.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Xml.XmlDocument.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Xaml.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -36997,26 +34256,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B5FBCF72AEE896E9FD20C3934E7113D5" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AE2D7B02724DDA7F2129EFCC431086A2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Identity.Client, Version=4.73.1.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Compression.Brotli, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B5FBCF72AEE896E9FD20C3934E7113D5" + "_AE2D7B02724DDA7F2129EFCC431086A2" { - "Name" = "8:Microsoft.Identity.Client.dll" + "Name" = "8:System.IO.Compression.Brotli.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.Identity.Client.dll" + "SourcePath" = "8:System.IO.Compression.Brotli.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37031,23 +34290,12 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B6288F8D68A9416A92DC90E280B06EA2" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE5299FDCC43405EAF4370467BC9852D" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" - "ScatterAssemblies" - { - "_B6288F8D68A9416A92DC90E280B06EA2" - { - "Name" = "8:System.Windows.Controls.Ribbon.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Windows.Controls.Ribbon.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Housing.deps.json" + "TargetName" = "8:Housing.deps.json" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37062,23 +34310,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B64C145C07224471B09A38CB84311F65" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AEB09EE12FAD46EBA91839C0CBAF60A3" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B64C145C07224471B09A38CB84311F65" + "_AEB09EE12FAD46EBA91839C0CBAF60A3" { - "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" + "Name" = "8:PresentationFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ko\\System.Windows.Controls.Ribbon.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pt-BR\\PresentationFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_CB3BE22960A44DC39C9AA84ABE16E22A" + "Folder" = "8:_FE1199FD2AED473F9607036466985701" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37093,23 +34341,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B6C4D08D31CCEB4B3B525FF7287C1791" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B02AC42471634FDDB8675ACE5C4A140D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Principal, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.WebProxy, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B6C4D08D31CCEB4B3B525FF7287C1791" + "_B02AC42471634FDDB8675ACE5C4A140D" { - "Name" = "8:System.Security.Principal.dll" + "Name" = "8:System.Net.WebProxy.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.Principal.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.WebProxy.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37121,46 +34369,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B6CCA4A9653249069470DF365EC73E13" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B066540B0736433AB6589C065B960701" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B6CCA4A9653249069470DF365EC73E13" + "_B066540B0736433AB6589C065B960701" { - "Name" = "8:System.Windows.Input.Manipulations.resources.dll" + "Name" = "8:UIAutomationProvider.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hans\\System.Windows.Input.Manipulations.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hant\\UIAutomationProvider.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_A526A21B472242C9B6F4662E9D05A435" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B72BF1304D7C4BF4A68B845EAF0C9872" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\InspectionSettings.ini" - "TargetName" = "8:InspectionSettings.ini" - "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_07FEAE190090436A957E9601C38A7170" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37175,23 +34403,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B8AEAF1670241ADBAE04834B32D7CE4C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B08443E85D1E9F0B840A2A449E546223" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.SqlServer.Server, Version=1.0.0.0, Culture=neutral, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Abstractions, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B8AEAF1670241ADBAE04834B32D7CE4C" + "_B08443E85D1E9F0B840A2A449E546223" { - "Name" = "8:Microsoft.SqlServer.Server.dll" + "Name" = "8:Microsoft.IdentityModel.Abstractions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.SqlServer.Server.dll" + "SourcePath" = "8:Microsoft.IdentityModel.Abstractions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37206,23 +34434,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B9AEDD2931244B6494949D55104210BC" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B101C0AC4D184A2BB2E5114EC95A95B4" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationProvider, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B9AEDD2931244B6494949D55104210BC" + "_B101C0AC4D184A2BB2E5114EC95A95B4" { - "Name" = "8:UIAutomationProvider.dll" + "Name" = "8:WindowsBase.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\UIAutomationProvider.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hant\\WindowsBase.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_07FEAE190090436A957E9601C38A7170" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37237,54 +34465,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BA6689085C8CEBFE45F4F582C7CA6BE7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B13A099F228149CDB35ED8B4D88ACEDE" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Ping, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_BA6689085C8CEBFE45F4F582C7CA6BE7" - { - "Name" = "8:System.Net.Ping.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Ping.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BB9997D921573F9889C5EB78392A5460" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.TextWriterTraceListener, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Packaging, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_BB9997D921573F9889C5EB78392A5460" + "_B13A099F228149CDB35ED8B4D88ACEDE" { - "Name" = "8:System.Diagnostics.TextWriterTraceListener.dll" + "Name" = "8:System.IO.Packaging.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Diagnostics.TextWriterTraceListener.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.Packaging.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37296,26 +34493,15 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BBC69E729BE7F78A4C96530590B04EC4" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B3081C3D279041D18001864437F20CB4" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Thread, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_BBC69E729BE7F78A4C96530590B04EC4" - { - "Name" = "8:System.Threading.Thread.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Threading.Thread.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\publish\\setup-win-x64\\createdump.exe" + "TargetName" = "8:createdump.exe" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37327,26 +34513,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BBD6FAD81E26ECE30F40C28556D906CE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B31369344DC7215D3A7027A45F1F6021" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.WebProxy, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading.Timer, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_BBD6FAD81E26ECE30F40C28556D906CE" + "_B31369344DC7215D3A7027A45F1F6021" { - "Name" = "8:System.Net.WebProxy.dll" + "Name" = "8:System.Threading.Timer.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.WebProxy.dll" + "SourcePath" = "8:System.Threading.Timer.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37361,23 +34547,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BC55DE2D96EE4BE7B63A10E87BA44D07" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B41CF285191B458BB15E99523C5B2A40" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Caching.Memory, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework-SystemXmlLinq, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" "ScatterAssemblies" { - "_BC55DE2D96EE4BE7B63A10E87BA44D07" + "_B41CF285191B458BB15E99523C5B2A40" { - "Name" = "8:Microsoft.Extensions.Caching.Memory.dll" + "Name" = "8:PresentationFramework-SystemXmlLinq.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.Extensions.Caching.Memory.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\PresentationFramework-SystemXmlLinq.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37392,23 +34578,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BC8A1B78A0D1492B3C3EFB76715FC417" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B449B757B942480F9FEF6E80B4576ECB" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Protocols, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Reflection.TypeExtensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_BC8A1B78A0D1492B3C3EFB76715FC417" + "_B449B757B942480F9FEF6E80B4576ECB" { - "Name" = "8:Microsoft.IdentityModel.Protocols.dll" + "Name" = "8:System.Reflection.TypeExtensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.IdentityModel.Protocols.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Reflection.TypeExtensions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37420,26 +34606,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BCCA251C9F4088E35094B8C05D7588BD" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B4DA35F6411D41A4B08D2B39BB702932" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.ReaderWriter, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading.Timer, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_BCCA251C9F4088E35094B8C05D7588BD" + "_B4DA35F6411D41A4B08D2B39BB702932" { - "Name" = "8:System.Xml.ReaderWriter.dll" + "Name" = "8:System.Threading.Timer.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Xml.ReaderWriter.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Threading.Timer.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37451,26 +34637,15 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BD0C134F8B3D461082A684578110A12C" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4DCC798FE6343DAAAA2DB644A31C4B4" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Pipes, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_BD0C134F8B3D461082A684578110A12C" - { - "Name" = "8:System.IO.Pipes.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.Pipes.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\publish\\setup-win-x64\\clretwrc.dll" + "TargetName" = "8:clretwrc.dll" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37485,12 +34660,12 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD1C0B35E4F64A7F8E99C9D03DF3C970" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B52E170F78B442BA83D08B9123907CFC" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\osx-arm64\\native\\libSystem.IO.Ports.Native.dylib" - "TargetName" = "8:libSystem.IO.Ports.Native.dylib" + "SourcePath" = "8:..\\publish\\setup-win-x64\\vcruntime140_cor3.dll" + "TargetName" = "8:vcruntime140_cor3.dll" "Tag" = "8:" - "Folder" = "8:_648279F496114EF689ABC8F7CE40D732" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37505,23 +34680,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BD2010ACC5854E1096F7AC798834A8D7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B5359DB2717C45BB8ED554A6D0A6C361" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.ServicePoint, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Printing, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" "ScatterAssemblies" { - "_BD2010ACC5854E1096F7AC798834A8D7" + "_B5359DB2717C45BB8ED554A6D0A6C361" { - "Name" = "8:System.Net.ServicePoint.dll" + "Name" = "8:System.Printing.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.ServicePoint.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Printing.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37536,23 +34711,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BD3B5B85C4E445248560F41BD0DE8BE7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B69725EDCD9F8B8A68B0A07C5CD48621" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Win32.Registry, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Linq, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_BD3B5B85C4E445248560F41BD0DE8BE7" + "_B69725EDCD9F8B8A68B0A07C5CD48621" { - "Name" = "8:Microsoft.Win32.Registry.dll" + "Name" = "8:System.Linq.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.Win32.Registry.dll" + "SourcePath" = "8:System.Linq.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37564,26 +34739,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BE0035EF7CC7EF1AF1686515777E4C01" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B78FE2D82BB12BEA1A00AF66AD6722CA" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.AccessControl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.Contracts, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_BE0035EF7CC7EF1AF1686515777E4C01" + "_B78FE2D82BB12BEA1A00AF66AD6722CA" { - "Name" = "8:System.Security.AccessControl.dll" + "Name" = "8:System.Diagnostics.Contracts.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.AccessControl.dll" + "SourcePath" = "8:System.Diagnostics.Contracts.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37598,23 +34773,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BE071671F7014436B3DD37FCD7ED12CA" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B7EE7F69CAC839955D7B7E04EFE9C585" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Memory, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_BE071671F7014436B3DD37FCD7ED12CA" + "_B7EE7F69CAC839955D7B7E04EFE9C585" { - "Name" = "8:System.Windows.Input.Manipulations.resources.dll" + "Name" = "8:System.Memory.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hant\\System.Windows.Input.Manipulations.resources.dll" + "SourcePath" = "8:System.Memory.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_FFD6EAF1B3444345AC6B6F35CA58BF38" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37626,26 +34801,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BE139D97F8514758AF302D7BD7AED16D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B808326208D646B48EBF76E50BAE7695" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.HttpListener, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_BE139D97F8514758AF302D7BD7AED16D" + "_B808326208D646B48EBF76E50BAE7695" { - "Name" = "8:System.Net.HttpListener.dll" + "Name" = "8:System.Data.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.HttpListener.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Data.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37660,23 +34835,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BE1AF78253A7446CBAB1C6914460994B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B873BE40B7AA4D4FACE3565666F45F51" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Sockets, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_BE1AF78253A7446CBAB1C6914460994B" + "_B873BE40B7AA4D4FACE3565666F45F51" { - "Name" = "8:ReachFramework.resources.dll" + "Name" = "8:System.Net.Sockets.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\fr\\ReachFramework.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.Sockets.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_0D6BB22DBA6348629B76C0E2123EBBFD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37691,23 +34866,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B9ED092670E34E93B444DD3F43E9047E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:DirectWriteForwarder, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_BE3E7F9E8F3A4E9BA7E738C8D0F1436C" + "_B9ED092670E34E93B444DD3F43E9047E" { - "Name" = "8:DirectWriteForwarder.dll" + "Name" = "8:System.Windows.Input.Manipulations.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\DirectWriteForwarder.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\tr\\System.Windows.Input.Manipulations.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_D14333D71D9548B993E7562D7B181D97" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37722,23 +34897,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BE5D2C19D8FE4FA1BDF8F4B535872332" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BA20A3AB57C1422B8E71E1DA21B52473" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.Luna, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tools, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_BE5D2C19D8FE4FA1BDF8F4B535872332" + "_BA20A3AB57C1422B8E71E1DA21B52473" { - "Name" = "8:PresentationFramework.Luna.dll" + "Name" = "8:System.Diagnostics.Tools.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\PresentationFramework.Luna.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Diagnostics.Tools.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37753,23 +34928,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BEB7712F13CD4B2CBEA04C676E1B1CF4" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BA2B96C7FA5549D0B77262A6B2D056A3" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Bcl.Cryptography, Version=9.0.0.4, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_BEB7712F13CD4B2CBEA04C676E1B1CF4" + "_BA2B96C7FA5549D0B77262A6B2D056A3" { - "Name" = "8:Microsoft.Bcl.Cryptography.dll" + "Name" = "8:PresentationFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.Bcl.Cryptography.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hans\\PresentationFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_76359F5BF5894CC19460472A07F40277" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37784,23 +34959,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BF29C4B1EC234DD3AC7CFAFE4313EFFE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BA30063303C16AF1779B5530580C5ED4" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading.Overlapped, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_BF29C4B1EC234DD3AC7CFAFE4313EFFE" + "_BA30063303C16AF1779B5530580C5ED4" { - "Name" = "8:System.Reflection.dll" + "Name" = "8:System.Threading.Overlapped.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Reflection.dll" + "SourcePath" = "8:System.Threading.Overlapped.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37812,26 +34987,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BFCE0B7A76304ACAA2D84D64CE0EC7AB" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BAF05666A62E4063B67A990DBB654458" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression.Brotli, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.Process, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_BFCE0B7A76304ACAA2D84D64CE0EC7AB" + "_BAF05666A62E4063B67A990DBB654458" { - "Name" = "8:System.IO.Compression.Brotli.dll" + "Name" = "8:System.Diagnostics.Process.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.Compression.Brotli.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Diagnostics.Process.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37846,23 +35021,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BFF5FBE47C6B1DE189FA9A70CF61B8C6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BB2F0804317E40959BC54397F062E63F" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Resources.ResourceManager, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Linq.Parallel, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_BFF5FBE47C6B1DE189FA9A70CF61B8C6" + "_BB2F0804317E40959BC54397F062E63F" { - "Name" = "8:System.Resources.ResourceManager.dll" + "Name" = "8:System.Linq.Parallel.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Resources.ResourceManager.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Linq.Parallel.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37874,26 +35049,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C04A80B6E9D54E718CAF41CA552A46E3" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BB315D8F59155F74EC00AC8160D8203F" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=es, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tracing, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C04A80B6E9D54E718CAF41CA552A46E3" + "_BB315D8F59155F74EC00AC8160D8203F" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:System.Diagnostics.Tracing.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\es\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:System.Diagnostics.Tracing.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_6484A32FB9E04B12BEA774F87B4F9178" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37905,26 +35080,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C0963962D778472C925FDA3E346DFD0F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BB538FA2BB35D79B1A509C75F509CEED" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Caching.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.X509Certificates, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C0963962D778472C925FDA3E346DFD0F" + "_BB538FA2BB35D79B1A509C75F509CEED" { - "Name" = "8:Microsoft.Extensions.Caching.Abstractions.dll" + "Name" = "8:System.Security.Cryptography.X509Certificates.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.Extensions.Caching.Abstractions.dll" + "SourcePath" = "8:System.Security.Cryptography.X509Certificates.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37936,26 +35111,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C0D404D4D8454A858FA85D82CD92DF78" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Web.HttpUtility, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C0D404D4D8454A858FA85D82CD92DF78" + "_BBDA7DAB7FC40C5AB21A7CA880F8D3DD" { - "Name" = "8:System.Web.HttpUtility.dll" + "Name" = "8:System.Private.CoreLib.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Web.HttpUtility.dll" + "SourcePath" = "8:System.Private.CoreLib.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37967,26 +35142,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C11E19B0EB4B8A1E84235A23B46ABD98" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BC2AA73D1EB342DAA2E6E829A46B56DF" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.RuntimeInformation, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C11E19B0EB4B8A1E84235A23B46ABD98" + "_BC2AA73D1EB342DAA2E6E829A46B56DF" { - "Name" = "8:Microsoft.Extensions.Primitives.dll" + "Name" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.Extensions.Primitives.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Runtime.InteropServices.RuntimeInformation.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -37998,26 +35173,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C1776D18D5864A85859C2795FF95DBC4" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BC46BAEB1ACB4B6C9B2E676BC5136CB1" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C1776D18D5864A85859C2795FF95DBC4" + "_BC46BAEB1ACB4B6C9B2E676BC5136CB1" { - "Name" = "8:UIAutomationTypes.resources.dll" + "Name" = "8:ReachFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\de\\UIAutomationTypes.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hant\\ReachFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_8C6BAC487E12445AAC4169B115BE8835" + "Folder" = "8:_07FEAE190090436A957E9601C38A7170" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38032,23 +35207,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C17E953CE554458FA3D973414751D2CC" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BC75628638E74C7DAC366734ABAB19C1" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Private.Uri, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C17E953CE554458FA3D973414751D2CC" + "_BC75628638E74C7DAC366734ABAB19C1" { - "Name" = "8:System.Windows.Extensions.dll" + "Name" = "8:System.Private.Uri.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Windows.Extensions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Private.Uri.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38063,23 +35238,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C1A2429D7482783A256CC2F2BE26BCBD" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BC7A7626E0453C1C759DB01818C4B1B4" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Sockets, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Collections, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C1A2429D7482783A256CC2F2BE26BCBD" + "_BC7A7626E0453C1C759DB01818C4B1B4" { - "Name" = "8:System.Net.Sockets.dll" + "Name" = "8:System.Collections.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.Sockets.dll" + "SourcePath" = "8:System.Collections.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38094,23 +35269,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C2095D44FD874AF0AB1674F7B81FC236" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BC99B36986BA4DF485067E818CF29BFB" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.Intrinsics, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C2095D44FD874AF0AB1674F7B81FC236" + "_BC99B36986BA4DF485067E818CF29BFB" { - "Name" = "8:PresentationCore.resources.dll" + "Name" = "8:System.Runtime.Intrinsics.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\fr\\PresentationCore.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Runtime.Intrinsics.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_0D6BB22DBA6348629B76C0E2123EBBFD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38125,23 +35300,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C2C3BB0798EFC1FC067F01DF875DE2F4" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BDC26B191C4E46B2B8F880A9313172FF" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.Encoding, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C2C3BB0798EFC1FC067F01DF875DE2F4" + "_BDC26B191C4E46B2B8F880A9313172FF" { - "Name" = "8:System.Text.Encoding.dll" + "Name" = "8:UIAutomationProvider.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Text.Encoding.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\it\\UIAutomationProvider.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_154C18835E314DCA89F39AA7646FFC12" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38153,26 +35328,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C2DA7AAF1C68439CA95DEDC6F6CC83A4" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BDC9386BC0BF26599814EBEEF06578A8" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Contracts, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xml.XPath, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C2DA7AAF1C68439CA95DEDC6F6CC83A4" + "_BDC9386BC0BF26599814EBEEF06578A8" { - "Name" = "8:System.Diagnostics.Contracts.dll" + "Name" = "8:System.Xml.XPath.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Diagnostics.Contracts.dll" + "SourcePath" = "8:System.Xml.XPath.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38184,26 +35359,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C2F04854BE644AB3B053F8E4AA21C8B5" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BDE87E6E1B7A4905A9CEB9E5C03878BE" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:WindowsBase, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Text.Encodings.Web, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C2F04854BE644AB3B053F8E4AA21C8B5" + "_BDE87E6E1B7A4905A9CEB9E5C03878BE" { - "Name" = "8:WindowsBase.dll" + "Name" = "8:System.Text.Encodings.Web.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\WindowsBase.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Text.Encodings.Web.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38218,23 +35393,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C3B07EBEFAE54F1BB2AF8F980E78A084" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BEDF1CBE662C4A6DA590ACBC7F4A9A41" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C3B07EBEFAE54F1BB2AF8F980E78A084" + "_BEDF1CBE662C4A6DA590ACBC7F4A9A41" { - "Name" = "8:UIAutomationTypes.resources.dll" + "Name" = "8:UIAutomationProvider.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ru\\UIAutomationTypes.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pl\\UIAutomationProvider.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F050AFEC75CD404984C24AA71672DBCD" + "Folder" = "8:_C688DABCFD5B492EB58182172839DAB4" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38249,23 +35424,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C3CCCAC0E34A471DAFFC4BB34109A8D8" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BF1021F20A87A47CAA9E94F4C68346E2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.CompilerServices.Unsafe, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Collections.Immutable, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C3CCCAC0E34A471DAFFC4BB34109A8D8" + "_BF1021F20A87A47CAA9E94F4C68346E2" { - "Name" = "8:System.Runtime.CompilerServices.Unsafe.dll" + "Name" = "8:System.Collections.Immutable.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Runtime.CompilerServices.Unsafe.dll" + "SourcePath" = "8:System.Collections.Immutable.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38277,26 +35452,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C41F241047324439B40A7267816049B8" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BF5739FDB21B5BC85A300B57B07DB939" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.Numerics, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C41F241047324439B40A7267816049B8" + "_BF5739FDB21B5BC85A300B57B07DB939" { - "Name" = "8:System.Xaml.resources.dll" + "Name" = "8:System.Runtime.Numerics.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\tr\\System.Xaml.resources.dll" + "SourcePath" = "8:System.Runtime.Numerics.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F3F3E806FBD0440F983B77DA02BEF5A8" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38308,26 +35483,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C4393C50D0B918C6CE9057D84DF2C79E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BFB995BCB8239D0D35E57B0EEF41FC6B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections.Concurrent, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.StackTrace, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C4393C50D0B918C6CE9057D84DF2C79E" + "_BFB995BCB8239D0D35E57B0EEF41FC6B" { - "Name" = "8:System.Collections.Concurrent.dll" + "Name" = "8:System.Diagnostics.StackTrace.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Collections.Concurrent.dll" + "SourcePath" = "8:System.Diagnostics.StackTrace.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38342,23 +35517,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C46526CAB5A24576884D6EEAAB340FDE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C274A2B2CA9C43BB8E680F1B33C2BB11" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Azure.Core, Version=1.47.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C46526CAB5A24576884D6EEAAB340FDE" + "_C274A2B2CA9C43BB8E680F1B33C2BB11" { - "Name" = "8:Azure.Core.dll" + "Name" = "8:UIAutomationProvider.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Azure.Core.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\es\\UIAutomationProvider.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_50D95BB66E0E4F02ABA1951CD4EE263F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38373,23 +35548,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C4EB69ABB739EAA5F7A83AB70C81F466" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C2C7C844CF816EEE05C94D4477A24455" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Primitives, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.AccessControl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C4EB69ABB739EAA5F7A83AB70C81F466" + "_C2C7C844CF816EEE05C94D4477A24455" { - "Name" = "8:System.Runtime.Serialization.Primitives.dll" + "Name" = "8:System.IO.FileSystem.AccessControl.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.Serialization.Primitives.dll" + "SourcePath" = "8:System.IO.FileSystem.AccessControl.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38404,23 +35579,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C55A3B1DD3CF204DFEA82F4F0698C90F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C2FBE1D7563B4F8DB907BC4BB0F33118" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C55A3B1DD3CF204DFEA82F4F0698C90F" + "_C2FBE1D7563B4F8DB907BC4BB0F33118" { - "Name" = "8:System.Text.Json.dll" + "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Text.Json.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hant\\System.Windows.Controls.Ribbon.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_07FEAE190090436A957E9601C38A7170" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38432,26 +35607,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C599F411B318474096A28EEAF3F4DCC5" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C3014022A0AE4FC6A59AA6B444EB7B1E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Pipes.AccessControl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Globalization.Calendars, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C599F411B318474096A28EEAF3F4DCC5" + "_C3014022A0AE4FC6A59AA6B444EB7B1E" { - "Name" = "8:System.IO.Pipes.AccessControl.dll" + "Name" = "8:System.Globalization.Calendars.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.Pipes.AccessControl.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Globalization.Calendars.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38466,23 +35641,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C5B0AE74BFAE45BA893232F4A15B6C27" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C33C1C1F529792A6FCED9909D574C98D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Resources.ResourceManager, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C5B0AE74BFAE45BA893232F4A15B6C27" + "_C33C1C1F529792A6FCED9909D574C98D" { - "Name" = "8:UIAutomationClientSideProviders.dll" + "Name" = "8:System.Resources.ResourceManager.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\UIAutomationClientSideProviders.dll" + "SourcePath" = "8:System.Resources.ResourceManager.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38494,26 +35669,15 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C5FBC84433A48A25627AD60ACD70CFA9" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C38759E967F84737B3F30A17513E4CEB" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Algorithms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_C5FBC84433A48A25627AD60ACD70CFA9" - { - "Name" = "8:System.Security.Cryptography.Algorithms.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Cryptography.Algorithms.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.Data.SqlClient.SNI.dll" + "TargetName" = "8:Microsoft.Data.SqlClient.SNI.dll" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38525,26 +35689,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C6F0A5B6E993A45AA3484AB9972E006C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C3B7907507234BC19C2B0B958AAAC5B7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Memory, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" "ScatterAssemblies" { - "_C6F0A5B6E993A45AA3484AB9972E006C" + "_C3B7907507234BC19C2B0B958AAAC5B7" { - "Name" = "8:System.Memory.dll" + "Name" = "8:PresentationFramework.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Memory.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\PresentationFramework.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38556,26 +35720,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C739986D38D4428AA8E16DD93CA8F2C8" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C3EDD553A32A0F38069B9AC4058185CA" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Options, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.IsolatedStorage, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C739986D38D4428AA8E16DD93CA8F2C8" + "_C3EDD553A32A0F38069B9AC4058185CA" { - "Name" = "8:Microsoft.Extensions.Options.dll" + "Name" = "8:System.IO.IsolatedStorage.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.Extensions.Options.dll" + "SourcePath" = "8:System.IO.IsolatedStorage.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38587,26 +35751,15 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C764A96E38DC71EE64244082FCEF9637" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C3F1B244B6B34159B02E05612D2DB2FA" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.WebHeaderCollection, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_C764A96E38DC71EE64244082FCEF9637" - { - "Name" = "8:System.Net.WebHeaderCollection.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.WebHeaderCollection.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Housing.exe" + "TargetName" = "8:Housing.exe" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38618,26 +35771,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C7B8B31323F147A19100C0D701B4101C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C4B9E91420EE4CADAE899A7F2A74799B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C7B8B31323F147A19100C0D701B4101C" + "_C4B9E91420EE4CADAE899A7F2A74799B" { - "Name" = "8:System.Linq.dll" + "Name" = "8:System.Core.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Linq.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Core.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38652,23 +35805,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C84258B5F9CB4858B84F83F26C0CA7FB" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C4E024481F9141A0A7D82D763892B305" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xml.ReaderWriter, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C84258B5F9CB4858B84F83F26C0CA7FB" + "_C4E024481F9141A0A7D82D763892B305" { - "Name" = "8:System.Collections.dll" + "Name" = "8:System.Xml.ReaderWriter.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Collections.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Xml.ReaderWriter.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38683,23 +35836,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C88BBE41CBBB168C9AA5242A9BCD5275" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C50A7A1A8EDE4206BE0B828DB5216837" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.ThreadPool, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C88BBE41CBBB168C9AA5242A9BCD5275" + "_C50A7A1A8EDE4206BE0B828DB5216837" { - "Name" = "8:System.Threading.ThreadPool.dll" + "Name" = "8:PresentationUI.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Threading.ThreadPool.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\fr\\PresentationUI.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_CAA532AD901F4BF8A56F3FCA4F0F1124" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38711,26 +35864,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C8AFA500EEFD42B3900E727AD825322D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C536AFA6573FE06581A3399E201C4859" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.SqlServer.Server, Version=1.0.0.0, Culture=neutral, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C8AFA500EEFD42B3900E727AD825322D" + "_C536AFA6573FE06581A3399E201C4859" { - "Name" = "8:UIAutomationClientSideProviders.resources.dll" + "Name" = "8:Microsoft.SqlServer.Server.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ko\\UIAutomationClientSideProviders.resources.dll" + "SourcePath" = "8:Microsoft.SqlServer.Server.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_CB3BE22960A44DC39C9AA84ABE16E22A" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38742,26 +35895,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C8D235EB2C8C44488CC95E6B770AC24F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C55809C9E155444F9A5D4B5BC847935D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C8D235EB2C8C44488CC95E6B770AC24F" + "_C55809C9E155444F9A5D4B5BC847935D" { - "Name" = "8:System.Runtime.Serialization.Json.dll" + "Name" = "8:UIAutomationTypes.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Runtime.Serialization.Json.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\it\\UIAutomationTypes.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_154C18835E314DCA89F39AA7646FFC12" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38776,23 +35929,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C8DFF8EA726E42CEA62AE696AB8E73F2" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C57DC3BE85AD71C60002B330DECCCFCE" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Private.DataContractSerialization, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C8DFF8EA726E42CEA62AE696AB8E73F2" + "_C57DC3BE85AD71C60002B330DECCCFCE" { - "Name" = "8:ReachFramework.resources.dll" + "Name" = "8:System.Private.DataContractSerialization.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\cs\\ReachFramework.resources.dll" + "SourcePath" = "8:System.Private.DataContractSerialization.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_39C4141125A7444BAD628B61802AD256" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38804,26 +35957,15 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C910CACFE76849F3A159B9A360FB9AC0" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C5C66681487F4179B25C87BB141A1601" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Data.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_C910CACFE76849F3A159B9A360FB9AC0" - { - "Name" = "8:System.Data.Common.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Data.Common.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Housing.runtimeconfig.json" + "TargetName" = "8:Housing.runtimeconfig.json" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38838,23 +35980,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C9119A99605F402ABE71C62A7381323B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C630F7E8EA4840BAB1B2559D71483F8E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.Aero2, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" "ScatterAssemblies" { - "_C9119A99605F402ABE71C62A7381323B" + "_C630F7E8EA4840BAB1B2559D71483F8E" { - "Name" = "8:PresentationFramework.Aero2.dll" + "Name" = "8:System.Windows.Controls.Ribbon.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\PresentationFramework.Aero2.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Windows.Controls.Ribbon.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38869,43 +36011,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C917E933CF5640B7BA560B4FB8121B8D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C659DE23C00C4113A5B3AE9C1407DD25" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Configuration.ConfigurationManager, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C917E933CF5640B7BA560B4FB8121B8D" + "_C659DE23C00C4113A5B3AE9C1407DD25" { - "Name" = "8:System.Configuration.ConfigurationManager.dll" + "Name" = "8:ReachFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Configuration.ConfigurationManager.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\cs\\ReachFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C921BA89031740C3BCDC73B584CC7E9A" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\linux-arm64\\native\\libSystem.IO.Ports.Native.so" - "TargetName" = "8:libSystem.IO.Ports.Native.so" - "Tag" = "8:" - "Folder" = "8:_BD001A4192EB435EA74EDB86759F8B08" + "Folder" = "8:_7901A3B17F9447C3A81D55DC5033828B" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38920,23 +36042,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C924905900BE468CABD14BEB7314F26C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C68B0CA281FD4B6D98E6226E53465377" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C924905900BE468CABD14BEB7314F26C" + "_C68B0CA281FD4B6D98E6226E53465377" { - "Name" = "8:PresentationUI.resources.dll" + "Name" = "8:UIAutomationClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\it\\PresentationUI.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\cs\\UIAutomationClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33866903D6804194A4096F8D1E34C9F3" + "Folder" = "8:_7901A3B17F9447C3A81D55DC5033828B" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38951,23 +36073,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CA7D4C375C8AE0BA7A9C4B569915BC5C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C6B0DE3EF58F14930CF8663D2B67CFBD" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Abstractions, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Linq.Expressions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_CA7D4C375C8AE0BA7A9C4B569915BC5C" + "_C6B0DE3EF58F14930CF8663D2B67CFBD" { - "Name" = "8:Microsoft.IdentityModel.Abstractions.dll" + "Name" = "8:System.Linq.Expressions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.IdentityModel.Abstractions.dll" + "SourcePath" = "8:System.Linq.Expressions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -38982,23 +36104,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CA9EFFE3C824C0519F9E371FA2EEC3B6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C7C4378630198E8FEAE1BFA8CFD591A2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.JsonWebTokens, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Encoding, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_CA9EFFE3C824C0519F9E371FA2EEC3B6" + "_C7C4378630198E8FEAE1BFA8CFD591A2" { - "Name" = "8:Microsoft.IdentityModel.JsonWebTokens.dll" + "Name" = "8:System.Security.Cryptography.Encoding.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.IdentityModel.JsonWebTokens.dll" + "SourcePath" = "8:System.Security.Cryptography.Encoding.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39013,23 +36135,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CAB5C2A388B34D1F874E72AC38354BFA" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C8225AB4F128DD5C462799E34B2089A7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Xml, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_CAB5C2A388B34D1F874E72AC38354BFA" + "_C8225AB4F128DD5C462799E34B2089A7" { - "Name" = "8:Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "Name" = "8:System.Security.Cryptography.Xml.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + "SourcePath" = "8:System.Security.Cryptography.Xml.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39041,26 +36163,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CB02F647470F494189623712907E935C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C8501F70BD18823ADF0B44FD24726755" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_CB02F647470F494189623712907E935C" + "_C8501F70BD18823ADF0B44FD24726755" { - "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" + "Name" = "8:System.Runtime.Extensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pt-BR\\System.Windows.Controls.Ribbon.resources.dll" + "SourcePath" = "8:System.Runtime.Extensions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_9A8437D0ADE7402E8451ABF67C350698" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39072,26 +36194,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CB1F155372950F93B93A4149AD30F430" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C914EBE43CDF4902AE0D19E96CF70C0B" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.ValueTuple, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Threading.Tasks, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_CB1F155372950F93B93A4149AD30F430" + "_C914EBE43CDF4902AE0D19E96CF70C0B" { - "Name" = "8:System.ValueTuple.dll" + "Name" = "8:System.Threading.Tasks.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.ValueTuple.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Threading.Tasks.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39103,26 +36225,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CB5653876B1E7402162D97E2078FD8F7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C96BF04976E84586BDC7959B5441D238" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.CompilerServices.VisualC, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_CB5653876B1E7402162D97E2078FD8F7" + "_C96BF04976E84586BDC7959B5441D238" { - "Name" = "8:System.Runtime.CompilerServices.VisualC.dll" + "Name" = "8:System.Xaml.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.CompilerServices.VisualC.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\it\\System.Xaml.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_154C18835E314DCA89F39AA7646FFC12" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39134,26 +36256,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CB90C612EFF646FAB59656A00BCE7784" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CAF73FC6756D481DA84E75224472AA35" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_CB90C612EFF646FAB59656A00BCE7784" + "_CAF73FC6756D481DA84E75224472AA35" { - "Name" = "8:System.Windows.Input.Manipulations.resources.dll" + "Name" = "8:ReachFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\es\\System.Windows.Input.Manipulations.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\es\\ReachFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_319F794A01F24DA7B010B84BF5746B1F" + "Folder" = "8:_50D95BB66E0E4F02ABA1951CD4EE263F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39168,23 +36290,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CC5DE103F0B1626462D98943314907C9" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CB2A1C78BE69483C846E42C240F57994" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.RuntimeInformation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Buffers, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_CC5DE103F0B1626462D98943314907C9" + "_CB2A1C78BE69483C846E42C240F57994" { - "Name" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" + "Name" = "8:System.Buffers.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Buffers.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39196,26 +36318,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CDC750ABB7DA4D5BB101583406E8DB9E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CB6C3806A5B43EEBDB09EB86EF760090" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Threading.Overlapped, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_CDC750ABB7DA4D5BB101583406E8DB9E" + "_CB6C3806A5B43EEBDB09EB86EF760090" { - "Name" = "8:Microsoft.Extensions.Primitives.dll" + "Name" = "8:System.Threading.Overlapped.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.Extensions.Primitives.dll" + "SourcePath" = "8:System.Threading.Overlapped.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39227,26 +36349,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CE06A3E8903D4CAA961DC66421FF050D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CB7900C58EB6431199E974BDC44043FC" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Pipes.AccessControl, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_CE06A3E8903D4CAA961DC66421FF050D" + "_CB7900C58EB6431199E974BDC44043FC" { - "Name" = "8:UIAutomationClient.resources.dll" + "Name" = "8:System.IO.Pipes.AccessControl.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pt-BR\\UIAutomationClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.Pipes.AccessControl.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_9A8437D0ADE7402E8451ABF67C350698" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39261,23 +36383,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CE947B66B9254A22BF0CE0672C657A22" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CC37EBF295A7332587DED92372BE8CF7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tools, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_CE947B66B9254A22BF0CE0672C657A22" + "_CC37EBF295A7332587DED92372BE8CF7" { - "Name" = "8:PresentationFramework.resources.dll" + "Name" = "8:System.Diagnostics.Tools.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hant\\PresentationFramework.resources.dll" + "SourcePath" = "8:System.Diagnostics.Tools.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_FFD6EAF1B3444345AC6B6F35CA58BF38" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39289,26 +36411,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CCB130078DDD4B288794D03E93E5D82B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Configuration.ConfigurationManager, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Drawing.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_CF7A5CD88A7F820BF2C34799F7AE6D9C" + "_CCB130078DDD4B288794D03E93E5D82B" { - "Name" = "8:System.Configuration.ConfigurationManager.dll" + "Name" = "8:System.Drawing.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Configuration.ConfigurationManager.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Drawing.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39320,26 +36442,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CFD22DE1255E4E85B4E653BDC727530D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CCBFE906A96B44D6A430F23C40339B79" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_CFD22DE1255E4E85B4E653BDC727530D" + "_CCBFE906A96B44D6A430F23C40339B79" { - "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" + "Name" = "8:PresentationFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pl\\System.Windows.Controls.Ribbon.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\tr\\PresentationFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33ECECC7E762456A9E89108B3C562998" + "Folder" = "8:_D14333D71D9548B993E7562D7B181D97" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39354,12 +36476,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D03555126FF34A3D992D5000D825A1A3" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CD8824E528414EBDA5DCE3BA0A9528F8" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\clrgc.dll" - "TargetName" = "8:clrgc.dll" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Linq.Expressions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_CD8824E528414EBDA5DCE3BA0A9528F8" + { + "Name" = "8:System.Linq.Expressions.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Linq.Expressions.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39374,23 +36507,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D08DD0666CC842F1AD8325C1C827285E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CDC4036AF5D00A8FCCF3DE0224C4F001" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XmlDocument, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.FileVersionInfo, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D08DD0666CC842F1AD8325C1C827285E" + "_CDC4036AF5D00A8FCCF3DE0224C4F001" { - "Name" = "8:System.Xml.XmlDocument.dll" + "Name" = "8:System.Diagnostics.FileVersionInfo.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Xml.XmlDocument.dll" + "SourcePath" = "8:System.Diagnostics.FileVersionInfo.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39402,26 +36535,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D10BDDA5EB364256BAAC5CB1AF12B03B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CDF71BE081FC4947BBF459AC8209ED17" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XmlSerializer, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D10BDDA5EB364256BAAC5CB1AF12B03B" + "_CDF71BE081FC4947BBF459AC8209ED17" { - "Name" = "8:System.Xml.XmlSerializer.dll" + "Name" = "8:System.Xaml.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Xml.XmlSerializer.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hant\\System.Xaml.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_07FEAE190090436A957E9601C38A7170" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39436,23 +36569,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D132FA26F719439394D7C487765D7801" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CE376B1E0C914C7FA20720E96A734E2F" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Pkcs, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Private.DataContractSerialization, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D132FA26F719439394D7C487765D7801" + "_CE376B1E0C914C7FA20720E96A734E2F" { - "Name" = "8:System.Security.Cryptography.Pkcs.dll" + "Name" = "8:System.Private.DataContractSerialization.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.Cryptography.Pkcs.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Private.DataContractSerialization.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39467,23 +36600,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D142F4C5A6246588440689DF4036E8F2" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CE6D89188B1C43438BB2A2F8F3334887" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Pipes, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework.Luna, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" "ScatterAssemblies" { - "_D142F4C5A6246588440689DF4036E8F2" + "_CE6D89188B1C43438BB2A2F8F3334887" { - "Name" = "8:System.IO.Pipes.dll" + "Name" = "8:PresentationFramework.Luna.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.Pipes.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\PresentationFramework.Luna.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39495,26 +36628,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D1486B9C39CE4CC093E398FFD82384C5" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CEB3E300107F4C12BEC487845DA4E174" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Algorithms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D1486B9C39CE4CC093E398FFD82384C5" + "_CEB3E300107F4C12BEC487845DA4E174" { - "Name" = "8:PresentationUI.resources.dll" + "Name" = "8:System.Security.Cryptography.Algorithms.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ko\\PresentationUI.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.Cryptography.Algorithms.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_CB3BE22960A44DC39C9AA84ABE16E22A" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39529,23 +36662,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D193446CE76C4B37A00A5D7ABF1F2335" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CF64DAC62FED43EE9B6F411BE5FBF065" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework-SystemData, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" "ScatterAssemblies" { - "_D193446CE76C4B37A00A5D7ABF1F2335" + "_CF64DAC62FED43EE9B6F411BE5FBF065" { - "Name" = "8:System.Windows.Input.Manipulations.resources.dll" + "Name" = "8:PresentationFramework-SystemData.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ja\\System.Windows.Input.Manipulations.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\PresentationFramework-SystemData.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_98051D1C933E479E8031502C52F83D92" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39560,23 +36693,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D1D543DAD7744FF4BE1A766D354AFE45" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D0135A8E1515400F82789A103488E9A7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Ports, Version=9.0.0.10, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D1D543DAD7744FF4BE1A766D354AFE45" + "_D0135A8E1515400F82789A103488E9A7" { - "Name" = "8:System.IO.Ports.dll" + "Name" = "8:UIAutomationClientSideProviders.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\unix\\lib\\net9.0\\System.IO.Ports.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hant\\UIAutomationClientSideProviders.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_9A2ECD9DD63044F48A32BDAB4694DD4C" + "Folder" = "8:_07FEAE190090436A957E9601C38A7170" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39591,23 +36724,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D27991107EA14C1C8B4A246C7658161E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D0BD19994C2940679E82F355F7717861" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Housing, Version=1.0.0.0, Culture=neutral, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Runtime, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D27991107EA14C1C8B4A246C7658161E" + "_D0BD19994C2940679E82F355F7717861" { - "Name" = "8:Housing.dll" + "Name" = "8:System.Runtime.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Housing.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Runtime.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39622,23 +36755,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D27AEA7FE3F328B5BB4B8A02ADDE13CF" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D1035DA311AD4850946354F1993CC230" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Windows, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D27AEA7FE3F328B5BB4B8A02ADDE13CF" + "_D1035DA311AD4850946354F1993CC230" { - "Name" = "8:System.Windows.dll" + "Name" = "8:System.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Windows.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39650,26 +36783,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D27FF6909BB24D13BCEE5E0AB0B89913" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D147A209D52B47799F51651D4069C15E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.Fluent, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D27FF6909BB24D13BCEE5E0AB0B89913" + "_D147A209D52B47799F51651D4069C15E" { - "Name" = "8:PresentationFramework.Fluent.dll" + "Name" = "8:Microsoft.Extensions.DependencyInjection.Abstractions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\PresentationFramework.Fluent.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39684,23 +36817,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D346B9B850D84EABAEB1E259694C69C5" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D1527BD8144CE83D6E988DAFE1DBBA47" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ComponentModel.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D346B9B850D84EABAEB1E259694C69C5" + "_D1527BD8144CE83D6E988DAFE1DBBA47" { - "Name" = "8:UIAutomationClientSideProviders.resources.dll" + "Name" = "8:System.ComponentModel.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hans\\UIAutomationClientSideProviders.resources.dll" + "SourcePath" = "8:System.ComponentModel.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_A526A21B472242C9B6F4662E9D05A435" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39712,26 +36845,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D3B9100D444743C5A5B2BEADE3C79799" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D1536A9A50C04C1C9CE3347977FB6F6A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.Classic, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D3B9100D444743C5A5B2BEADE3C79799" + "_D1536A9A50C04C1C9CE3347977FB6F6A" { - "Name" = "8:PresentationFramework.Classic.dll" + "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\PresentationFramework.Classic.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ja\\System.Windows.Controls.Ribbon.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_EF49A53A2F124808B6DA2E203BD36641" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39746,23 +36879,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D470B254FA3D41358525D56D2B5CD107" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D15EF60D825A48459AD557A4AF7FB791" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D470B254FA3D41358525D56D2B5CD107" + "_D15EF60D825A48459AD557A4AF7FB791" { - "Name" = "8:System.Windows.Input.Manipulations.resources.dll" + "Name" = "8:System.Runtime.Serialization.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\de\\System.Windows.Input.Manipulations.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Runtime.Serialization.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_8C6BAC487E12445AAC4169B115BE8835" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39777,23 +36910,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D49878CA78FA4ADE8CBDC913604B6C59" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D1835B3FF98AA2BAE46388B5977A4784" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Principal, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D49878CA78FA4ADE8CBDC913604B6C59" + "_D1835B3FF98AA2BAE46388B5977A4784" { - "Name" = "8:WindowsBase.resources.dll" + "Name" = "8:System.Security.Principal.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\de\\WindowsBase.resources.dll" + "SourcePath" = "8:System.Security.Principal.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_8C6BAC487E12445AAC4169B115BE8835" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39805,26 +36938,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D499B5E2D6DE522B7109B3BAD3DECCE3" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D1C2C90966B214685D6072ECB20B5548" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Http.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Reflection.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D499B5E2D6DE522B7109B3BAD3DECCE3" + "_D1C2C90966B214685D6072ECB20B5548" { - "Name" = "8:System.Net.Http.Json.dll" + "Name" = "8:System.Reflection.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.Http.Json.dll" + "SourcePath" = "8:System.Reflection.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39839,23 +36972,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D4EC43B9F9144598017136DE430174D9" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D21D86E7F5F54FBF8413690CA489839C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Logging.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Bcl.Cryptography, Version=9.0.0.4, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D4EC43B9F9144598017136DE430174D9" + "_D21D86E7F5F54FBF8413690CA489839C" { - "Name" = "8:Microsoft.Extensions.Logging.Abstractions.dll" + "Name" = "8:Microsoft.Bcl.Cryptography.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.Extensions.Logging.Abstractions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.Bcl.Cryptography.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39867,26 +37000,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D2D9F77E68304266A99FC9CB4D0760C2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Mail, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D52E2BFBA74C4B5EA407D19D6D51D6E0" + "_D2D9F77E68304266A99FC9CB4D0760C2" { - "Name" = "8:System.Net.Mail.dll" + "Name" = "8:PresentationUI.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.Mail.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\it\\PresentationUI.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_154C18835E314DCA89F39AA7646FFC12" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39901,23 +37034,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D5476A023FBF43CAE5EAF7BC70796886" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D56039FB07C948599C4514959B5603C9" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections.Immutable, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D5476A023FBF43CAE5EAF7BC70796886" + "_D56039FB07C948599C4514959B5603C9" { - "Name" = "8:System.Collections.Immutable.dll" + "Name" = "8:UIAutomationClientSideProviders.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Collections.Immutable.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pt-BR\\UIAutomationClientSideProviders.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_FE1199FD2AED473F9607036466985701" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39929,26 +37062,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D5D99E88A3A04486994B133889AF2CCC" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D6144464659746A8AAA12CCE9508EEE0" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Xml, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D5D99E88A3A04486994B133889AF2CCC" + "_D6144464659746A8AAA12CCE9508EEE0" { - "Name" = "8:UIAutomationProvider.resources.dll" + "Name" = "8:System.Runtime.Serialization.Xml.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\cs\\UIAutomationProvider.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Runtime.Serialization.Xml.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_39C4141125A7444BAD628B61802AD256" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39963,23 +37096,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D70105EFCEBA442B98082B3C141A8AD9" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D61738826E13F256E5D5365099EA0D68" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Options, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D70105EFCEBA442B98082B3C141A8AD9" + "_D61738826E13F256E5D5365099EA0D68" { - "Name" = "8:PresentationFramework.resources.dll" + "Name" = "8:Microsoft.Extensions.Options.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\es\\PresentationFramework.resources.dll" + "SourcePath" = "8:Microsoft.Extensions.Options.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_319F794A01F24DA7B010B84BF5746B1F" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -39991,26 +37124,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D70666FC24FC4568897AD2D90357364A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D6246B49359C12A914E1F377C60A5384" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Protocols, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.JavaScript, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D70666FC24FC4568897AD2D90357364A" + "_D6246B49359C12A914E1F377C60A5384" { - "Name" = "8:Microsoft.IdentityModel.Protocols.dll" + "Name" = "8:System.Runtime.InteropServices.JavaScript.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Microsoft.IdentityModel.Protocols.dll" + "SourcePath" = "8:System.Runtime.InteropServices.JavaScript.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40022,26 +37155,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D706847CA9704803AFE057226793B64A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D724F156DB414BA6AB7ABFED86061864" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.Numerics, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D706847CA9704803AFE057226793B64A" + "_D724F156DB414BA6AB7ABFED86061864" { - "Name" = "8:PresentationFramework.resources.dll" + "Name" = "8:System.Runtime.Numerics.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\it\\PresentationFramework.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Runtime.Numerics.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33866903D6804194A4096F8D1E34C9F3" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40056,23 +37189,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D712A5E055A3EC30011B6E0718A0BBF1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D811630E15194F8E96C950896FE98C7B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Web.HttpUtility, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:ReachFramework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" "ScatterAssemblies" { - "_D712A5E055A3EC30011B6E0718A0BBF1" + "_D811630E15194F8E96C950896FE98C7B" { - "Name" = "8:System.Web.HttpUtility.dll" + "Name" = "8:ReachFramework.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Web.HttpUtility.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ReachFramework.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40084,15 +37217,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D7583FB04FBA47C8B7321E56AF459031" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D833F480766C340EF20C1D1A2343E3A5" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Hardware.ini" - "TargetName" = "8:Hardware.ini" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Runtime.Loader, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_D833F480766C340EF20C1D1A2343E3A5" + { + "Name" = "8:System.Runtime.Loader.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.Runtime.Loader.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40104,26 +37248,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D75B6A6A5545683C518ED86EB7E8F781" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D8979AC1BB2F4805A6F3910449C8D2A9" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D75B6A6A5545683C518ED86EB7E8F781" + "_D8979AC1BB2F4805A6F3910449C8D2A9" { - "Name" = "8:System.Net.Http.dll" + "Name" = "8:WindowsBase.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.Http.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hans\\WindowsBase.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_76359F5BF5894CC19460472A07F40277" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40135,26 +37279,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D831A6BFB38CDEE31BFE4F9EFAEEBDDC" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D8CE98FDC0B643A5BA490D9FCCBADE21" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Xml.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D831A6BFB38CDEE31BFE4F9EFAEEBDDC" + "_D8CE98FDC0B643A5BA490D9FCCBADE21" { - "Name" = "8:System.Xml.Serialization.dll" + "Name" = "8:PresentationFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Xml.Serialization.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hant\\PresentationFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_07FEAE190090436A957E9601C38A7170" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40166,26 +37310,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D8CC51C9CF1742878EF7566CFF9CA640" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D8D464C1D0DB47DDB5EECB9B3B20D539" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Requests, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D8CC51C9CF1742878EF7566CFF9CA640" + "_D8D464C1D0DB47DDB5EECB9B3B20D539" { - "Name" = "8:ReachFramework.resources.dll" + "Name" = "8:System.Net.Requests.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ko\\ReachFramework.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.Requests.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_CB3BE22960A44DC39C9AA84ABE16E22A" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40200,23 +37344,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D95667BB0BE960569CE9FD00654E9D8C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D8F5958646964348B09B2F5870ED1BE0" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Transactions.Local, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D95667BB0BE960569CE9FD00654E9D8C" + "_D8F5958646964348B09B2F5870ED1BE0" { - "Name" = "8:System.Security.Cryptography.Primitives.dll" + "Name" = "8:System.Transactions.Local.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.Cryptography.Primitives.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Transactions.Local.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40228,26 +37372,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D969904EDA3D42E9B175DFF029D96C47" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D91B6235A19E4D5D86FDB5318B05BBD7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Timer, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D969904EDA3D42E9B175DFF029D96C47" + "_D91B6235A19E4D5D86FDB5318B05BBD7" { - "Name" = "8:System.Threading.Timer.dll" + "Name" = "8:System.Threading.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Threading.Timer.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Threading.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40262,23 +37406,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D98AF936095545A4A7CCE03DFBB0EC62" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D96CCFFEF1EB441BAFA0B04DA20ADF5A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D98AF936095545A4A7CCE03DFBB0EC62" + "_D96CCFFEF1EB441BAFA0B04DA20ADF5A" { - "Name" = "8:ReachFramework.resources.dll" + "Name" = "8:WindowsBase.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\es\\ReachFramework.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\cs\\WindowsBase.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_319F794A01F24DA7B010B84BF5746B1F" + "Folder" = "8:_7901A3B17F9447C3A81D55DC5033828B" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40293,23 +37437,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D9930CF9099C162CBFE610861A2D1E71" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D9B04703426F5AEBC70BE52A33DA7633" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Text.RegularExpressions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D9930CF9099C162CBFE610861A2D1E71" + "_D9B04703426F5AEBC70BE52A33DA7633" { - "Name" = "8:netstandard.dll" + "Name" = "8:System.Text.RegularExpressions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:netstandard.dll" + "SourcePath" = "8:System.Text.RegularExpressions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40324,74 +37468,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D9B27F97F8364272BFC062C329454BD6" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_D9B27F97F8364272BFC062C329454BD6" - { - "Name" = "8:PresentationFramework.resources.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pt-BR\\PresentationFramework.resources.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_9A8437D0ADE7402E8451ABF67C350698" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA4DB9AAAE444B209454DBE3ADC1E15D" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\clrjit.dll" - "TargetName" = "8:clrjit.dll" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DAA20B5745500E7FDCA65B7ABE6A042B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D9EA246F32A0F9C2A8FF0F1DF0F9E268" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Azure.Identity, Version=1.14.2.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.WebClient, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_DAA20B5745500E7FDCA65B7ABE6A042B" + "_D9EA246F32A0F9C2A8FF0F1DF0F9E268" { - "Name" = "8:Azure.Identity.dll" + "Name" = "8:System.Net.WebClient.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Azure.Identity.dll" + "SourcePath" = "8:System.Net.WebClient.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40406,23 +37499,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DB3E5FAFF6AB44D0B20B4355C0FEAB68" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DA09F5E866E3BB9E0C746846C6A946E4" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Private.Uri, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_DB3E5FAFF6AB44D0B20B4355C0FEAB68" + "_DA09F5E866E3BB9E0C746846C6A946E4" { - "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" + "Name" = "8:System.Private.Uri.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ja\\System.Windows.Controls.Ribbon.resources.dll" + "SourcePath" = "8:System.Private.Uri.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_98051D1C933E479E8031502C52F83D92" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40434,26 +37527,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DB6DA2D86C6F4DC68545755D67200523" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DA43343BE0AA49CCAC8C6F8C11231267" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Tasks.Dataflow, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_DB6DA2D86C6F4DC68545755D67200523" + "_DA43343BE0AA49CCAC8C6F8C11231267" { - "Name" = "8:System.Threading.Tasks.Dataflow.dll" + "Name" = "8:UIAutomationProvider.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Threading.Tasks.Dataflow.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\de\\UIAutomationProvider.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_05DBECC2336740CDB09A80EB68B7B14F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40468,23 +37561,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DBD627086CF44A91BE97CB36B87CD8D7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DA87F4E078FD438E9CBA27D5FD4B0543" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.EventLog, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_DBD627086CF44A91BE97CB36B87CD8D7" + "_DA87F4E078FD438E9CBA27D5FD4B0543" { - "Name" = "8:PresentationCore.resources.dll" + "Name" = "8:System.Diagnostics.EventLog.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ko\\PresentationCore.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Diagnostics.EventLog.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_CB3BE22960A44DC39C9AA84ABE16E22A" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40499,23 +37592,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DC1DA13D29294C5A9005F83D465B66CF" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DA9A5A57867E4C3CA3A26AD724AD35EA" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.DirectoryServices, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.Lightweight, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_DC1DA13D29294C5A9005F83D465B66CF" + "_DA9A5A57867E4C3CA3A26AD724AD35EA" { - "Name" = "8:System.DirectoryServices.dll" + "Name" = "8:System.Reflection.Emit.Lightweight.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.DirectoryServices.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Reflection.Emit.Lightweight.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40530,23 +37623,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DC21853E6873482290484023DCAA2629" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DB755541B20243BDB9467F3470981BC4" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Pipelines, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_DC21853E6873482290484023DCAA2629" + "_DB755541B20243BDB9467F3470981BC4" { - "Name" = "8:PresentationUI.resources.dll" + "Name" = "8:System.IO.Pipelines.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pt-BR\\PresentationUI.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.IO.Pipelines.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_9A8437D0ADE7402E8451ABF67C350698" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40561,43 +37654,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DC27C0EBA63D45A09DE6527CC6009B3C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DBB40A1C41C34EFFA1F4D9EDD04CA79D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Http.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_DC27C0EBA63D45A09DE6527CC6009B3C" + "_DBB40A1C41C34EFFA1F4D9EDD04CA79D" { - "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" + "Name" = "8:System.Net.Http.Json.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\fr\\System.Windows.Controls.Ribbon.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.Http.Json.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_0D6BB22DBA6348629B76C0E2123EBBFD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC38E9890590405295D05C0FA8652D61" - { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\InspectionSettings.ini" - "TargetName" = "8:InspectionSettings.ini" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40612,23 +37685,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DC5BA24737434CFC93737655BE821203" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DBD1C464BFA47A6D07EF347445419ECD" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Private.DataContractSerialization, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Buffers, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_DC5BA24737434CFC93737655BE821203" + "_DBD1C464BFA47A6D07EF347445419ECD" { - "Name" = "8:System.Private.DataContractSerialization.dll" + "Name" = "8:System.Buffers.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Private.DataContractSerialization.dll" + "SourcePath" = "8:System.Buffers.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40640,26 +37713,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DC86BEE9EFC84BA699CC5CBF9BFAE67E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DC31A38AE46E7DFCEDB5951409403753" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression.FileSystem, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Security, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_DC86BEE9EFC84BA699CC5CBF9BFAE67E" + "_DC31A38AE46E7DFCEDB5951409403753" { - "Name" = "8:System.IO.Compression.FileSystem.dll" + "Name" = "8:System.Net.Security.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.Compression.FileSystem.dll" + "SourcePath" = "8:System.Net.Security.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40671,26 +37744,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DC944ED3DEFB4DC3AB77F27A04FEC892" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DCED769F3CED40F68BBF793A3190390F" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" "ScatterAssemblies" { - "_DC944ED3DEFB4DC3AB77F27A04FEC892" + "_DCED769F3CED40F68BBF793A3190390F" { - "Name" = "8:System.ComponentModel.dll" + "Name" = "8:Microsoft.Extensions.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.ComponentModel.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.Extensions.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40705,23 +37778,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DD909E2A84A6A03F885157C6D9F706D1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DD6992CD0ACCFF6B889A1ADC7D2DAE43" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Numerics, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Azure.Identity, Version=1.14.2.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" "ScatterAssemblies" { - "_DD909E2A84A6A03F885157C6D9F706D1" + "_DD6992CD0ACCFF6B889A1ADC7D2DAE43" { - "Name" = "8:System.Runtime.Numerics.dll" + "Name" = "8:Azure.Identity.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.Numerics.dll" + "SourcePath" = "8:Azure.Identity.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40736,23 +37809,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DE408A593CAD828A7E5F24C6BDC31BE0" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DD9267F304CD86680605583251BC35EC" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Azure.Core, Version=1.47.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Resources.Writer, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_DE408A593CAD828A7E5F24C6BDC31BE0" + "_DD9267F304CD86680605583251BC35EC" { - "Name" = "8:Azure.Core.dll" + "Name" = "8:System.Resources.Writer.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Azure.Core.dll" + "SourcePath" = "8:System.Resources.Writer.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40767,23 +37840,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DEC1BF0706D9BD9911592BB55DD70651" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DD98189F70C149948FEBEDB7FFD024BB" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Debug, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework.Aero2, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" "ScatterAssemblies" { - "_DEC1BF0706D9BD9911592BB55DD70651" + "_DD98189F70C149948FEBEDB7FFD024BB" { - "Name" = "8:System.Diagnostics.Debug.dll" + "Name" = "8:PresentationFramework.Aero2.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Diagnostics.Debug.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\PresentationFramework.Aero2.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40795,26 +37868,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DECDF56F984E473E92323CACE22A1C1C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DDB9E5D5DD0E4B24962ABC7F8132B4A2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Drawing.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.Loader, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_DECDF56F984E473E92323CACE22A1C1C" + "_DDB9E5D5DD0E4B24962ABC7F8132B4A2" { - "Name" = "8:System.Drawing.Primitives.dll" + "Name" = "8:System.Runtime.Loader.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Drawing.Primitives.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Runtime.Loader.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40829,23 +37902,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DF7BE6B17DB31AF84FE5CB648144B247" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DE2E2DBDCACB4DFFABB53403CF80C99E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.ProtectedData, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.HttpListener, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_DF7BE6B17DB31AF84FE5CB648144B247" + "_DE2E2DBDCACB4DFFABB53403CF80C99E" { - "Name" = "8:System.Security.Cryptography.ProtectedData.dll" + "Name" = "8:System.Net.HttpListener.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.Cryptography.ProtectedData.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.HttpListener.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40857,26 +37930,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DF914A3690054B6CB9B7658ACB9DE4BF" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DE4CD1E105AF4B87366D07C46F4C2663" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.EventBasedAsync, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.Watcher, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_DF914A3690054B6CB9B7658ACB9DE4BF" + "_DE4CD1E105AF4B87366D07C46F4C2663" { - "Name" = "8:System.ComponentModel.EventBasedAsync.dll" + "Name" = "8:System.IO.FileSystem.Watcher.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.ComponentModel.EventBasedAsync.dll" + "SourcePath" = "8:System.IO.FileSystem.Watcher.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40888,26 +37961,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DFBDF74AFAE84C61AF344A7EAA435F27" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DFC472D488BD43128D784076A4681591" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_DFBDF74AFAE84C61AF344A7EAA435F27" + "_DFC472D488BD43128D784076A4681591" { - "Name" = "8:PresentationUI.resources.dll" + "Name" = "8:System.Security.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\cs\\PresentationUI.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_39C4141125A7444BAD628B61802AD256" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40922,23 +37995,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DFF757D14EB882CB71FA8D0C55AB8BF8" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E0A24BFA11AB3044C761E3C573C63E35" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Csp, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_DFF757D14EB882CB71FA8D0C55AB8BF8" + "_E0A24BFA11AB3044C761E3C573C63E35" { - "Name" = "8:System.Runtime.Serialization.Json.dll" + "Name" = "8:System.Security.Cryptography.Csp.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.Serialization.Json.dll" + "SourcePath" = "8:System.Security.Cryptography.Csp.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40953,23 +38026,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E0A90872657427483F053288CC41F7BF" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E0AA6902979947A58079211F8F730078" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Ports, Version=9.0.0.10, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=fr, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" "ScatterAssemblies" { - "_E0A90872657427483F053288CC41F7BF" + "_E0AA6902979947A58079211F8F730078" { - "Name" = "8:System.IO.Ports.dll" + "Name" = "8:Microsoft.Data.SqlClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.Ports.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\fr\\Microsoft.Data.SqlClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_CAA532AD901F4BF8A56F3FCA4F0F1124" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -40981,26 +38054,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E0DD91B6820043019824432F3CCAC570" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E10F32141108468157C13370CD7F7C81" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Packaging, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Reflection.TypeExtensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_E0DD91B6820043019824432F3CCAC570" + "_E10F32141108468157C13370CD7F7C81" { - "Name" = "8:System.IO.Packaging.dll" + "Name" = "8:System.Reflection.TypeExtensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.Packaging.dll" + "SourcePath" = "8:System.Reflection.TypeExtensions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41012,26 +38085,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E129F749CD8340D59FB77411E5B5DD52" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E17EB625D338F9B7C8CD609BA23059D2" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq.Expressions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_E129F749CD8340D59FB77411E5B5DD52" + "_E17EB625D338F9B7C8CD609BA23059D2" { - "Name" = "8:System.Linq.Expressions.dll" + "Name" = "8:System.Net.Http.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Linq.Expressions.dll" + "SourcePath" = "8:System.Net.Http.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41043,26 +38116,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E1CCBF6B3FDBC09AF00783496814045C" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Security, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_E1A3E969F9AEB5FE6F9F0CE0D9FE2BEA" + "_E1CCBF6B3FDBC09AF00783496814045C" { - "Name" = "8:System.Net.Security.dll" + "Name" = "8:netstandard.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.Security.dll" + "SourcePath" = "8:netstandard.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41077,23 +38150,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E1B0A32F6019411481452214B755CDD8" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E206E7CC8B4944C8842AA2E66444D42D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Buffers, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:DirectWriteForwarder, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" "ScatterAssemblies" { - "_E1B0A32F6019411481452214B755CDD8" + "_E206E7CC8B4944C8842AA2E66444D42D" { - "Name" = "8:System.Buffers.dll" + "Name" = "8:DirectWriteForwarder.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Buffers.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\DirectWriteForwarder.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41108,23 +38181,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E34DEC63EF5AECFFBF8716A00D7C2056" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E24C55B98E6242C3B31344952E3ED6B6" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XPath.XDocument, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.WebHeaderCollection, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_E34DEC63EF5AECFFBF8716A00D7C2056" + "_E24C55B98E6242C3B31344952E3ED6B6" { - "Name" = "8:System.Xml.XPath.XDocument.dll" + "Name" = "8:System.Net.WebHeaderCollection.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Xml.XPath.XDocument.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.WebHeaderCollection.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41136,26 +38209,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E451AD3BC24D41ADB228D1701A132788" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E2E5B1A173384F57A03F090CD727C49F" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_E451AD3BC24D41ADB228D1701A132788" + "_E2E5B1A173384F57A03F090CD727C49F" { - "Name" = "8:System.Threading.dll" + "Name" = "8:UIAutomationClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Threading.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pt-BR\\UIAutomationClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_FE1199FD2AED473F9607036466985701" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41170,23 +38243,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E4C1953ECBAC459BA5CE532B297CB753" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E2FDCF13274F4F67A89C0CD8661BAD11" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=it, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" "ScatterAssemblies" { - "_E4C1953ECBAC459BA5CE532B297CB753" + "_E2FDCF13274F4F67A89C0CD8661BAD11" { - "Name" = "8:PresentationCore.resources.dll" + "Name" = "8:Microsoft.Data.SqlClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ja\\PresentationCore.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\it\\Microsoft.Data.SqlClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_98051D1C933E479E8031502C52F83D92" + "Folder" = "8:_154C18835E314DCA89F39AA7646FFC12" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41201,23 +38274,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E54A5417B7A74CA0AFEBBB6AC3B2891C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E332A6F95C8C5F2A442A4197B94A81F9" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.CompilerServices.VisualC, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_E54A5417B7A74CA0AFEBBB6AC3B2891C" + "_E332A6F95C8C5F2A442A4197B94A81F9" { - "Name" = "8:PresentationCore.resources.dll" + "Name" = "8:System.Runtime.CompilerServices.VisualC.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hant\\PresentationCore.resources.dll" + "SourcePath" = "8:System.Runtime.CompilerServices.VisualC.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_FFD6EAF1B3444345AC6B6F35CA58BF38" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41229,26 +38302,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E5543BEE19D6404AAF21E98E481D50A3" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E3624B09B1B18A0909D083D27DB90604" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Identity.Client.Extensions.Msal, Version=4.73.1.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae, processorArchitecture=MSIL" "ScatterAssemblies" { - "_E5543BEE19D6404AAF21E98E481D50A3" + "_E3624B09B1B18A0909D083D27DB90604" { - "Name" = "8:UIAutomationProvider.resources.dll" + "Name" = "8:Microsoft.Identity.Client.Extensions.Msal.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\tr\\UIAutomationProvider.resources.dll" + "SourcePath" = "8:Microsoft.Identity.Client.Extensions.Msal.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F3F3E806FBD0440F983B77DA02BEF5A8" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41260,26 +38333,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E5643FE0277AF29FFDF91A76ACDCA15D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E3D571DDD2B44063B2081E8535FD46E6" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_E5643FE0277AF29FFDF91A76ACDCA15D" + "_E3D571DDD2B44063B2081E8535FD46E6" { - "Name" = "8:System.IO.Compression.dll" + "Name" = "8:UIAutomationTypes.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.Compression.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ja\\UIAutomationTypes.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_EF49A53A2F124808B6DA2E203BD36641" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41291,26 +38364,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E6D30AB47617454F8622230FAC41B8D7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E43B59AB67864BD0944C88D3E25021E7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections.Concurrent, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xml.XDocument, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_E6D30AB47617454F8622230FAC41B8D7" + "_E43B59AB67864BD0944C88D3E25021E7" { - "Name" = "8:System.Collections.Concurrent.dll" + "Name" = "8:System.Xml.XDocument.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Collections.Concurrent.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Xml.XDocument.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41325,12 +38398,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E742F99B1F0044E9ABB52FF2A6A893B7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E502D4E6B4CE477E9C8584C2FA1CB3A7" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\init.sql" - "TargetName" = "8:init.sql" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_E502D4E6B4CE477E9C8584C2FA1CB3A7" + { + "Name" = "8:UIAutomationClientSideProviders.resources.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\ru\\UIAutomationClientSideProviders.resources.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_3A07FF1E066342A19AABED2888E683D3" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41345,23 +38429,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E74C8D77D5E37A69B6984831650003C7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E5947AAC70DDA0C7E95740380DDB4357" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.TraceSource, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_E74C8D77D5E37A69B6984831650003C7" + "_E5947AAC70DDA0C7E95740380DDB4357" { - "Name" = "8:System.Windows.Extensions.dll" + "Name" = "8:System.Diagnostics.TraceSource.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Windows.Extensions.dll" + "SourcePath" = "8:System.Diagnostics.TraceSource.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41376,23 +38460,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E76590BCB82D4ABF84904198C14023CB" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E5F605D98C8CBEBB00C09D5EC8C8127B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.JsonWebTokens, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_E76590BCB82D4ABF84904198C14023CB" + "_E5F605D98C8CBEBB00C09D5EC8C8127B" { - "Name" = "8:System.Xaml.resources.dll" + "Name" = "8:Microsoft.IdentityModel.JsonWebTokens.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\de\\System.Xaml.resources.dll" + "SourcePath" = "8:Microsoft.IdentityModel.JsonWebTokens.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_8C6BAC487E12445AAC4169B115BE8835" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41404,26 +38488,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E767A68E6E9F41049C353260F89FEAF5" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E6D8C4B69849495883A1497295063547" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tools, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ComponentModel.Primitives, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_E767A68E6E9F41049C353260F89FEAF5" + "_E6D8C4B69849495883A1497295063547" { - "Name" = "8:System.Diagnostics.Tools.dll" + "Name" = "8:System.ComponentModel.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Diagnostics.Tools.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.ComponentModel.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41438,23 +38522,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E8309CE031A84E3BB0C7AEA48E019E22" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E6E84499A1CB4A6A265D8C05BD0FFA40" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.MemoryMappedFiles, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IdentityModel.Tokens.Jwt, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_E8309CE031A84E3BB0C7AEA48E019E22" + "_E6E84499A1CB4A6A265D8C05BD0FFA40" { - "Name" = "8:System.IO.MemoryMappedFiles.dll" + "Name" = "8:System.IdentityModel.Tokens.Jwt.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.MemoryMappedFiles.dll" + "SourcePath" = "8:System.IdentityModel.Tokens.Jwt.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41466,26 +38550,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E93E4EB634E7453F8CD394FA9939AC72" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E72F0DA7D97E4A83ADC0D935CCEBAA2C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.CompilerServices.VisualC, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_E93E4EB634E7453F8CD394FA9939AC72" + "_E72F0DA7D97E4A83ADC0D935CCEBAA2C" { - "Name" = "8:System.IO.FileSystem.dll" + "Name" = "8:System.Runtime.CompilerServices.VisualC.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.FileSystem.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Runtime.CompilerServices.VisualC.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41500,23 +38584,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E9B8002F9879403F994F719F640BFF20" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E738C8C29E9E4034A27CFF1EC14A39C7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Private.Xml.Linq, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_E9B8002F9879403F994F719F640BFF20" + "_E738C8C29E9E4034A27CFF1EC14A39C7" { - "Name" = "8:System.Private.Xml.Linq.dll" + "Name" = "8:UIAutomationClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Private.Xml.Linq.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\zh-Hant\\UIAutomationClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_07FEAE190090436A957E9601C38A7170" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41531,12 +38615,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA440389671E43118F16428DBAB67189" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E73BF78D3FB8428D9E7155229D73455E" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\Housing.pdb" - "TargetName" = "8:Housing.pdb" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=tr, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_E73BF78D3FB8428D9E7155229D73455E" + { + "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\tr\\Microsoft.Data.SqlClient.resources.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_D14333D71D9548B993E7562D7B181D97" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41551,12 +38646,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA444D16D4344DC38DFD3112432AC09E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E744598D05BD4A72B9CC387E36733113" { - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\runtimes\\osx-x64\\native\\libSystem.IO.Ports.Native.dylib" - "TargetName" = "8:libSystem.IO.Ports.Native.dylib" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_E744598D05BD4A72B9CC387E36733113" + { + "Name" = "8:UIAutomationProvider.resources.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:..\\publish\\setup-win-x64\\tr\\UIAutomationProvider.resources.dll" + "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_3C71CB36E37B4C05B0606DAD9BB91254" + "Folder" = "8:_D14333D71D9548B993E7562D7B181D97" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41571,23 +38677,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EA48A68BB9E85EB5D21359CD934CDE34" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E7B7F39B3A4E44929B4467B0F77CD7B3" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.UnmanagedMemoryStream, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_EA48A68BB9E85EB5D21359CD934CDE34" + "_E7B7F39B3A4E44929B4467B0F77CD7B3" { - "Name" = "8:System.IO.UnmanagedMemoryStream.dll" + "Name" = "8:ReachFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.UnmanagedMemoryStream.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ja\\ReachFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_EF49A53A2F124808B6DA2E203BD36641" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41599,26 +38705,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EA7D4C3F94624D60B54A1DAC12893006" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E7FCDF731C3B4D35AEA32CF96F94DCB9" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Logging, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Text.Encoding.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_EA7D4C3F94624D60B54A1DAC12893006" + "_E7FCDF731C3B4D35AEA32CF96F94DCB9" { - "Name" = "8:Microsoft.IdentityModel.Logging.dll" + "Name" = "8:System.Text.Encoding.Extensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.IdentityModel.Logging.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Text.Encoding.Extensions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41633,23 +38739,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EB8BA7C21ABA40638C3816DE39B8B8AA" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E805B41593F64EE9B4641C1AC3146888" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.TraceSource, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_EB8BA7C21ABA40638C3816DE39B8B8AA" + "_E805B41593F64EE9B4641C1AC3146888" { - "Name" = "8:System.Diagnostics.TraceSource.dll" + "Name" = "8:PresentationCore.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Diagnostics.TraceSource.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\tr\\PresentationCore.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_D14333D71D9548B993E7562D7B181D97" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41664,23 +38770,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EC2A0C897C4A4C83924B8D98D10019ED" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=tr, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Mail, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_EC2A0C897C4A4C83924B8D98D10019ED" + "_E8B3C0FB6E67C3627DCA9B43E4DBC8C1" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:System.Net.Mail.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\tr\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:System.Net.Mail.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F3F3E806FBD0440F983B77DA02BEF5A8" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41692,26 +38798,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ED0DA281F66542919D2AC473AD74BA14" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E8BE71CCC5174E3DA8ADD6585C0D9570" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationUI.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Protocols, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_ED0DA281F66542919D2AC473AD74BA14" + "_E8BE71CCC5174E3DA8ADD6585C0D9570" { - "Name" = "8:PresentationUI.resources.dll" + "Name" = "8:Microsoft.IdentityModel.Protocols.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ru\\PresentationUI.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.IdentityModel.Protocols.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F050AFEC75CD404984C24AA71672DBCD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41726,23 +38832,85 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ED22E7D69A5A4C4DBF6D500300E53017" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E9DAA898D8564160E7A21A6605813D2D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.Intrinsics, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_ED22E7D69A5A4C4DBF6D500300E53017" + "_E9DAA898D8564160E7A21A6605813D2D" { - "Name" = "8:UIAutomationClient.resources.dll" + "Name" = "8:System.Runtime.Intrinsics.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.Runtime.Intrinsics.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EA379DBB2DF5E7F187B81469EDC10741" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Xml.XPath.XDocument, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_EA379DBB2DF5E7F187B81469EDC10741" + { + "Name" = "8:System.Xml.XPath.XDocument.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.Xml.XPath.XDocument.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EA837FA84860436DAAD8D64D941B280E" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_EA837FA84860436DAAD8D64D941B280E" + { + "Name" = "8:System.Windows.Input.Manipulations.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\es\\UIAutomationClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pl\\System.Windows.Input.Manipulations.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_319F794A01F24DA7B010B84BF5746B1F" + "Folder" = "8:_C688DABCFD5B492EB58182172839DAB4" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41757,23 +38925,54 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ED4EB4B6E478479B9879EEA7F238D5E0" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EA8D27EC4FC7094D6938CB2A9756B429" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Net.Sockets, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_EA8D27EC4FC7094D6938CB2A9756B429" + { + "Name" = "8:System.Net.Sockets.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.Net.Sockets.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EABF3921F3284D87909D094D538FA526" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Win32.SystemEvents, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_ED4EB4B6E478479B9879EEA7F238D5E0" + "_EABF3921F3284D87909D094D538FA526" { - "Name" = "8:UIAutomationClientSideProviders.resources.dll" + "Name" = "8:Microsoft.Win32.SystemEvents.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\it\\UIAutomationClientSideProviders.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.Win32.SystemEvents.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33866903D6804194A4096F8D1E34C9F3" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41788,23 +38987,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EDA76A729DD4307C7627100FBBAE26ED" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EB98E04073DF4D0A81057B1F53EC6632" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.StackTrace, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Mail, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_EDA76A729DD4307C7627100FBBAE26ED" + "_EB98E04073DF4D0A81057B1F53EC6632" { - "Name" = "8:System.Diagnostics.StackTrace.dll" + "Name" = "8:System.Net.Mail.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Diagnostics.StackTrace.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.Mail.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41816,26 +39015,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EE657F070AC54DDCBA5CD56C53F3FFDC" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EBBABB825D074329A7E5B1915C3232AF" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.RegularExpressions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_EE657F070AC54DDCBA5CD56C53F3FFDC" + "_EBBABB825D074329A7E5B1915C3232AF" { - "Name" = "8:System.Text.RegularExpressions.dll" + "Name" = "8:UIAutomationTypes.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Text.RegularExpressions.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\es\\UIAutomationTypes.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_50D95BB66E0E4F02ABA1951CD4EE263F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41850,23 +39049,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EE7BCAEF0FCC461FB03DB8DF401DCA94" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EC057A65CB2191A3A75D32D39E2C9281" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Claims, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Permissions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_EE7BCAEF0FCC461FB03DB8DF401DCA94" + "_EC057A65CB2191A3A75D32D39E2C9281" { - "Name" = "8:System.Security.Claims.dll" + "Name" = "8:System.Security.Permissions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.Claims.dll" + "SourcePath" = "8:System.Security.Permissions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41881,23 +39080,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EE89A54BD17940D98397488D356F8725" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EC1CFBB502EB4FB9AD5C501435FC8921" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections.NonGeneric, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_EE89A54BD17940D98397488D356F8725" + "_EC1CFBB502EB4FB9AD5C501435FC8921" { - "Name" = "8:System.Collections.NonGeneric.dll" + "Name" = "8:WindowsBase.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Collections.NonGeneric.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pt-BR\\WindowsBase.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_FE1199FD2AED473F9607036466985701" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41912,23 +39111,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EEC2D01F239C4AFAA2CA4422658DF52F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EC3A0311DD85F43D63F8C76ED4C88EE6" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Thread, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xml.ReaderWriter, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_EEC2D01F239C4AFAA2CA4422658DF52F" + "_EC3A0311DD85F43D63F8C76ED4C88EE6" { - "Name" = "8:System.Threading.Thread.dll" + "Name" = "8:System.Xml.ReaderWriter.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Threading.Thread.dll" + "SourcePath" = "8:System.Xml.ReaderWriter.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41940,26 +39139,57 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EC7AF235DA19AF381962502B470A8A30" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tracing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_EC7AF235DA19AF381962502B470A8A30" + { + "Name" = "8:System.Diagnostics.Tracing.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.Diagnostics.Tracing.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EF015C3FA17EA3D2FE205B66AD2A84A3" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EC8AD8267010F2D7915E238E2AC5218C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Formatters, Version=8.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading.Tasks.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_EF015C3FA17EA3D2FE205B66AD2A84A3" + "_EC8AD8267010F2D7915E238E2AC5218C" { - "Name" = "8:System.Runtime.Serialization.Formatters.dll" + "Name" = "8:System.Threading.Tasks.Extensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.Serialization.Formatters.dll" + "SourcePath" = "8:System.Threading.Tasks.Extensions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -41974,23 +39204,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EF1D2C6852E2496CB6BB1C17E585B91B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ECBDCCED98AC46C59E8FCB78D0C523E3" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Encoding, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_EF1D2C6852E2496CB6BB1C17E585B91B" + "_ECBDCCED98AC46C59E8FCB78D0C523E3" { - "Name" = "8:System.Windows.Input.Manipulations.resources.dll" + "Name" = "8:System.Security.Cryptography.Encoding.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pt-BR\\System.Windows.Input.Manipulations.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.Cryptography.Encoding.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_9A8437D0ADE7402E8451ABF67C350698" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42005,23 +39235,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EF94E2DA6C72DA9C63B35DDB55F7A644" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ED282BD291954FCF8BEFDA9D27F67BBE" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_EF94E2DA6C72DA9C63B35DDB55F7A644" + "_ED282BD291954FCF8BEFDA9D27F67BBE" { - "Name" = "8:System.Runtime.dll" + "Name" = "8:UIAutomationClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ko\\UIAutomationClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_506EF00DD33D4ECF9B29B8A5A859CE45" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42033,26 +39263,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F06D87FB58FA42DAB9F564332CE2105D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ED6EF431B71B461098C1E38F9513C0A3" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=es, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F06D87FB58FA42DAB9F564332CE2105D" + "_ED6EF431B71B461098C1E38F9513C0A3" { - "Name" = "8:WindowsBase.resources.dll" + "Name" = "8:Microsoft.Data.SqlClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hans\\WindowsBase.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\es\\Microsoft.Data.SqlClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_A526A21B472242C9B6F4662E9D05A435" + "Folder" = "8:_50D95BB66E0E4F02ABA1951CD4EE263F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42067,54 +39297,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F0A36D4461B449338F00BEACE026387F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EDCDF4FA15AC1B4C43D09F8B96C20B7A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_F0A36D4461B449338F00BEACE026387F" - { - "Name" = "8:mscorlib.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\mscorlib.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F0EA57735BF3449AB63083CAF9B9B3B9" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.ProtectedData, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F0EA57735BF3449AB63083CAF9B9B3B9" + "_EDCDF4FA15AC1B4C43D09F8B96C20B7A" { - "Name" = "8:System.Runtime.Extensions.dll" + "Name" = "8:System.Security.Cryptography.ProtectedData.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Runtime.Extensions.dll" + "SourcePath" = "8:System.Security.Cryptography.ProtectedData.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42126,26 +39325,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F1232BDC1C584F518602C340CC6D9B3B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EDCF4173C63D6E3DBE3EBD16AB57A3BD" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.UnmanagedMemoryStream, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F1232BDC1C584F518602C340CC6D9B3B" + "_EDCF4173C63D6E3DBE3EBD16AB57A3BD" { - "Name" = "8:System.IO.UnmanagedMemoryStream.dll" + "Name" = "8:System.Runtime.Serialization.Xml.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.IO.UnmanagedMemoryStream.dll" + "SourcePath" = "8:System.Runtime.Serialization.Xml.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42157,26 +39356,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F123BCB33FAF471CA8A39D6E046F8F8A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EDDA39861F3723CCFEF74E28047A6DF9" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=fr, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ComponentModel.TypeConverter, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F123BCB33FAF471CA8A39D6E046F8F8A" + "_EDDA39861F3723CCFEF74E28047A6DF9" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:System.ComponentModel.TypeConverter.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\fr\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:System.ComponentModel.TypeConverter.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_0D6BB22DBA6348629B76C0E2123EBBFD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42188,26 +39387,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F15129EDC4B8463491B8B0C0C7DC2AE4" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EDF50FE9EF1946E1922E6F86FA7842D5" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Ports, Version=9.0.0.10, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.VisualBasic.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F15129EDC4B8463491B8B0C0C7DC2AE4" + "_EDF50FE9EF1946E1922E6F86FA7842D5" { - "Name" = "8:System.IO.Ports.dll" + "Name" = "8:Microsoft.VisualBasic.Core.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\System.IO.Ports.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.VisualBasic.Core.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42222,23 +39421,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F1D679BED009170305B2519CD78CA300" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EDFE6F57CA78D24F28D284DE3331ABF9" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.Annotations, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Security.SecureString, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F1D679BED009170305B2519CD78CA300" + "_EDFE6F57CA78D24F28D284DE3331ABF9" { - "Name" = "8:System.ComponentModel.Annotations.dll" + "Name" = "8:System.Security.SecureString.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.ComponentModel.Annotations.dll" + "SourcePath" = "8:System.Security.SecureString.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42253,23 +39452,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F209B5DB23FDBB924E78243E39A49B2D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EEC77B01CA74259E38B4BF930D62BBCA" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Pipelines, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Xml, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F209B5DB23FDBB924E78243E39A49B2D" + "_EEC77B01CA74259E38B4BF930D62BBCA" { - "Name" = "8:System.IO.Pipelines.dll" + "Name" = "8:System.Runtime.Serialization.Xml.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.Pipelines.dll" + "SourcePath" = "8:System.Runtime.Serialization.Xml.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42284,23 +39483,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F234093989D94177BDA1899CB3899E6B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EFCC656AC74B43E495D1B9EAF292B675" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Cng, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Input.Manipulations.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F234093989D94177BDA1899CB3899E6B" + "_EFCC656AC74B43E495D1B9EAF292B675" { - "Name" = "8:System.Security.Cryptography.Cng.dll" + "Name" = "8:System.Windows.Input.Manipulations.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.Cryptography.Cng.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ru\\System.Windows.Input.Manipulations.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_3A07FF1E066342A19AABED2888E683D3" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42315,23 +39514,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F2EF36872A68BB7BF9299928E8570A54" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F05C2A6ABC3663BA3E2F3CF0A8A61AF0" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ClientModel, Version=1.5.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Formats.Nrbf, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F2EF36872A68BB7BF9299928E8570A54" + "_F05C2A6ABC3663BA3E2F3CF0A8A61AF0" { - "Name" = "8:System.ClientModel.dll" + "Name" = "8:System.Formats.Nrbf.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.ClientModel.dll" + "SourcePath" = "8:System.Formats.Nrbf.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42346,23 +39545,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F2F97D454D8D47918C9652A80088AC3C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F106C022A6904BC6BB197A83AB8DAAC8" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F2F97D454D8D47918C9652A80088AC3C" + "_F106C022A6904BC6BB197A83AB8DAAC8" { - "Name" = "8:System.IO.FileSystem.dll" + "Name" = "8:ReachFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.FileSystem.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\it\\ReachFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_154C18835E314DCA89F39AA7646FFC12" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42374,26 +39573,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F35677D8BAE0440BAB6251CF38C56E56" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F137BF9D1B77BF0B9B508E41BE202357" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=fr, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Principal.Windows, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F35677D8BAE0440BAB6251CF38C56E56" + "_F137BF9D1B77BF0B9B508E41BE202357" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:System.Security.Principal.Windows.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\fr\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:System.Security.Principal.Windows.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_6A31EAEF616942BAA6B1605B03F16A21" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42405,26 +39604,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F3FBFC9F0B8845BF9ABA6CDF70517733" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F1D42F5FB7484B7D884F14677FCC7001" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Azure.Core, Version=1.47.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F3FBFC9F0B8845BF9ABA6CDF70517733" + "_F1D42F5FB7484B7D884F14677FCC7001" { - "Name" = "8:PresentationFramework.resources.dll" + "Name" = "8:Azure.Core.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\de\\PresentationFramework.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Azure.Core.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_8C6BAC487E12445AAC4169B115BE8835" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42439,23 +39638,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F4E0452827F743E4917D6E9D8C14CF82" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F1DD1333A875F0DB8A3FE15C1C30474C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Text.Encoding, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F4E0452827F743E4917D6E9D8C14CF82" + "_F1DD1333A875F0DB8A3FE15C1C30474C" { - "Name" = "8:UIAutomationClientSideProviders.resources.dll" + "Name" = "8:System.Text.Encoding.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ja\\UIAutomationClientSideProviders.resources.dll" + "SourcePath" = "8:System.Text.Encoding.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_98051D1C933E479E8031502C52F83D92" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42467,26 +39666,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F62AEFC871D44831804BCD4DF25C23F0" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F1E6E73509744DA98278CF51C40AE066" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F62AEFC871D44831804BCD4DF25C23F0" + "_F1E6E73509744DA98278CF51C40AE066" { - "Name" = "8:System.Security.Cryptography.dll" + "Name" = "8:System.Net.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.Cryptography.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42501,23 +39700,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F682B2F4C68FE65321CE4CD6736B661B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F2BF868F37FD4EBB9EEE93828F6B8B80" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.HttpListener, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Logging.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F682B2F4C68FE65321CE4CD6736B661B" + "_F2BF868F37FD4EBB9EEE93828F6B8B80" { - "Name" = "8:System.Net.HttpListener.dll" + "Name" = "8:Microsoft.Extensions.Logging.Abstractions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.HttpListener.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.Extensions.Logging.Abstractions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42529,26 +39728,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F6BAAF5364A4477F8AB5AC0EC2E90C05" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F2D5764A578D47B7A5F39A4F078F6794" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework-SystemCore, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=AMD64" + "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F6BAAF5364A4477F8AB5AC0EC2E90C05" + "_F2D5764A578D47B7A5F39A4F078F6794" { - "Name" = "8:PresentationFramework-SystemCore.dll" + "Name" = "8:WindowsBase.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\PresentationFramework-SystemCore.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ja\\WindowsBase.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_EF49A53A2F124808B6DA2E203BD36641" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42563,23 +39762,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F74B633FFD13477CB23319970F4DA9B6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F3DD6E43439845C5B435A9E9A9524E5B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=pl, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F74B633FFD13477CB23319970F4DA9B6" + "_F3DD6E43439845C5B435A9E9A9524E5B" { - "Name" = "8:UIAutomationTypes.resources.dll" + "Name" = "8:System.Web.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pl\\UIAutomationTypes.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Web.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33ECECC7E762456A9E89108B3C562998" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42594,23 +39793,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F74FD6B90AD24FF6B7FFEEDBAD83CAC6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F44B9F499B54413980FDF3B3201DA9FC" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F74FD6B90AD24FF6B7FFEEDBAD83CAC6" + "_F44B9F499B54413980FDF3B3201DA9FC" { - "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" + "Name" = "8:System.Xaml.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\cs\\System.Windows.Controls.Ribbon.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ru\\System.Xaml.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_39C4141125A7444BAD628B61802AD256" + "Folder" = "8:_3A07FF1E066342A19AABED2888E683D3" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42625,23 +39824,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F7DCFBBBD2303C93730C794C86A43580" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F46463168E28445994747470940851B5" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.SecureString, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationTypes, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64" "ScatterAssemblies" { - "_F7DCFBBBD2303C93730C794C86A43580" + "_F46463168E28445994747470940851B5" { - "Name" = "8:System.Security.SecureString.dll" + "Name" = "8:UIAutomationTypes.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.SecureString.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\UIAutomationTypes.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42653,26 +39852,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F81ABC3C293841A7AA5921A1286B040B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F50034E84445435DAAB8F14F1FE1E03F" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=ja, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F81ABC3C293841A7AA5921A1286B040B" + "_F50034E84445435DAAB8F14F1FE1E03F" { - "Name" = "8:UIAutomationTypes.resources.dll" + "Name" = "8:System.Runtime.Serialization.Json.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ja\\UIAutomationTypes.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Runtime.Serialization.Json.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_98051D1C933E479E8031502C52F83D92" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42687,23 +39886,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F830479CC5094EACA6A03A8E3D7B4851" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F50DAAA0E2934C479ECE2D8802E610D0" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=cs, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:ReachFramework.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F830479CC5094EACA6A03A8E3D7B4851" + "_F50DAAA0E2934C479ECE2D8802E610D0" { - "Name" = "8:WindowsBase.resources.dll" + "Name" = "8:ReachFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\cs\\WindowsBase.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pt-BR\\ReachFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_39C4141125A7444BAD628B61802AD256" + "Folder" = "8:_FE1199FD2AED473F9607036466985701" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42718,23 +39917,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F9603D3DE9A4843A3308ACAEA6ACBA29" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F5FE62D38D5C4D30A5276F398ACE2208" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Data.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Security, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F9603D3DE9A4843A3308ACAEA6ACBA29" + "_F5FE62D38D5C4D30A5276F398ACE2208" { - "Name" = "8:System.Data.Common.dll" + "Name" = "8:System.Net.Security.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Data.Common.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Net.Security.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42746,26 +39945,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F990AF8668E94BD9BE4862F58E0BD0B7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F86D3CBF0B1F43668BF213D00BF2E7FF" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Xml, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xaml.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F990AF8668E94BD9BE4862F58E0BD0B7" + "_F86D3CBF0B1F43668BF213D00BF2E7FF" { - "Name" = "8:System.Runtime.Serialization.Xml.dll" + "Name" = "8:System.Xaml.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Runtime.Serialization.Xml.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\pt-BR\\System.Xaml.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_FE1199FD2AED473F9607036466985701" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42780,23 +39979,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FA40DA5BCA1319A838E77639535E5A9C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F8B53535DABD4E7D5E5951C921AC682A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Ports, Version=9.0.0.10, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FA40DA5BCA1319A838E77639535E5A9C" + "_F8B53535DABD4E7D5E5951C921AC682A" { - "Name" = "8:System.Private.CoreLib.dll" + "Name" = "8:System.IO.Ports.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Private.CoreLib.dll" + "SourcePath" = "8:System.IO.Ports.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42811,54 +40010,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FB8CCE47C2C24FC78F44CE8816A25D4F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.Encoding.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_FB8CCE47C2C24FC78F44CE8816A25D4F" - { - "Name" = "8:System.Text.Encoding.Extensions.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Text.Encoding.Extensions.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FBBEF73DA7CF42B195372A8C11C6117C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F97984886F724C73B3B2743E9274CF5D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=zh-Hant, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=ko, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FBBEF73DA7CF42B195372A8C11C6117C" + "_F97984886F724C73B3B2743E9274CF5D" { - "Name" = "8:UIAutomationProvider.resources.dll" + "Name" = "8:Microsoft.Data.SqlClient.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hant\\UIAutomationProvider.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ko\\Microsoft.Data.SqlClient.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_FFD6EAF1B3444345AC6B6F35CA58BF38" + "Folder" = "8:_506EF00DD33D4ECF9B29B8A5A859CE45" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42873,23 +40041,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FC009E9A5A3440DABEEA87E31255CB3C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F9D45EB45753FAD80DFD1C6F7ADF3844" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=ru, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.WebProxy, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FC009E9A5A3440DABEEA87E31255CB3C" + "_F9D45EB45753FAD80DFD1C6F7ADF3844" { - "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" + "Name" = "8:System.Net.WebProxy.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ru\\System.Windows.Controls.Ribbon.resources.dll" + "SourcePath" = "8:System.Net.WebProxy.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F050AFEC75CD404984C24AA71672DBCD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42901,26 +40069,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FC262487CAE543089CB587C8166C581E" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FA4CE78BBACB594C45D2BC3C566134D0" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.WebClient, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.FileSystem, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FC262487CAE543089CB587C8166C581E" + "_FA4CE78BBACB594C45D2BC3C566134D0" { - "Name" = "8:System.Net.WebClient.dll" + "Name" = "8:System.IO.FileSystem.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.WebClient.dll" + "SourcePath" = "8:System.IO.FileSystem.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42932,26 +40100,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FC47BDCEDA45473ABC719B085B8EFFD8" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FA592753CDE042848A569F999BFFBD44" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:UIAutomationClientSideProviders.resources, Version=9.0.0.0, Culture=de, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FC47BDCEDA45473ABC719B085B8EFFD8" + "_FA592753CDE042848A569F999BFFBD44" { - "Name" = "8:PresentationCore.resources.dll" + "Name" = "8:UIAutomationClientSideProviders.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\de\\PresentationCore.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\de\\UIAutomationClientSideProviders.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_8C6BAC487E12445AAC4169B115BE8835" + "Folder" = "8:_05DBECC2336740CDB09A80EB68B7B14F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42966,23 +40134,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FC53FBAE9EC941CF9F74D14A1A911331" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FA75660EFEB348B7AC175C24D774F176" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=tr, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FC53FBAE9EC941CF9F74D14A1A911331" + "_FA75660EFEB348B7AC175C24D774F176" { - "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" + "Name" = "8:PresentationFramework.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\tr\\System.Windows.Controls.Ribbon.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\it\\PresentationFramework.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F3F3E806FBD0440F983B77DA02BEF5A8" + "Folder" = "8:_154C18835E314DCA89F39AA7646FFC12" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -42997,23 +40165,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FC95A4D5ECA249D087B8C8927A983254" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FACC7D8D886249829543B076EC2FD9BA" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationTypes.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:WindowsBase.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FC95A4D5ECA249D087B8C8927A983254" + "_FACC7D8D886249829543B076EC2FD9BA" { - "Name" = "8:UIAutomationTypes.resources.dll" + "Name" = "8:WindowsBase.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hans\\UIAutomationTypes.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\es\\WindowsBase.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_A526A21B472242C9B6F4662E9D05A435" + "Folder" = "8:_50D95BB66E0E4F02ABA1951CD4EE263F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -43028,23 +40196,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FC9F660FC0B30011AC468ECE151178B4" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FB2362D3B56C02E660BBD18DFDAD9323" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Private.Xml, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Accessibility, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FC9F660FC0B30011AC468ECE151178B4" + "_FB2362D3B56C02E660BBD18DFDAD9323" { - "Name" = "8:System.Private.Xml.dll" + "Name" = "8:Accessibility.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Private.Xml.dll" + "SourcePath" = "8:Accessibility.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -43059,23 +40227,23 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FD80D55FA9E54BA1BB5D21F933BDB1C1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FB5846E10AC44AF497982FCAE901BDE7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.JsonWebTokens, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Threading.Overlapped, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FD80D55FA9E54BA1BB5D21F933BDB1C1" + "_FB5846E10AC44AF497982FCAE901BDE7" { - "Name" = "8:Microsoft.IdentityModel.JsonWebTokens.dll" + "Name" = "8:System.Threading.Overlapped.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.IdentityModel.JsonWebTokens.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Threading.Overlapped.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -43090,23 +40258,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FD88DABE9FFA404C83E33EB0E8A1C0FF" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FBCDC555A20E406DB6428A2BCFCD948C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Data.SqlClient.resources, Version=6.0.0.0, Culture=ru, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:PresentationCore.resources, Version=9.0.0.0, Culture=ko, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FD88DABE9FFA404C83E33EB0E8A1C0FF" + "_FBCDC555A20E406DB6428A2BCFCD948C" { - "Name" = "8:Microsoft.Data.SqlClient.resources.dll" + "Name" = "8:PresentationCore.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\ru\\Microsoft.Data.SqlClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\ko\\PresentationCore.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_F050AFEC75CD404984C24AA71672DBCD" + "Folder" = "8:_506EF00DD33D4ECF9B29B8A5A859CE45" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -43121,23 +40289,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FDB1B12366FA4BA49CA83639303BB836" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FC1B3053EE004D9CA842FE7ACAB59109" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:PresentationFramework.resources, Version=9.0.0.0, Culture=fr, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Options, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FDB1B12366FA4BA49CA83639303BB836" + "_FC1B3053EE004D9CA842FE7ACAB59109" { - "Name" = "8:PresentationFramework.resources.dll" + "Name" = "8:Microsoft.Extensions.Options.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\fr\\PresentationFramework.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.Extensions.Options.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_0D6BB22DBA6348629B76C0E2123EBBFD" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -43152,23 +40320,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FF01DD905B5046A4BD5F48DE0E98F609" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FC885A1AEC504F53914D5FCC259F5C15" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=it, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Resources.Reader, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FF01DD905B5046A4BD5F48DE0E98F609" + "_FC885A1AEC504F53914D5FCC259F5C15" { - "Name" = "8:UIAutomationProvider.resources.dll" + "Name" = "8:System.Resources.Reader.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\it\\UIAutomationProvider.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Resources.Reader.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_33866903D6804194A4096F8D1E34C9F3" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -43183,23 +40351,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FF1CA39B5F0F4A5784B3F060A1AEE9FD" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FD56A51A1C3951F7EECA29D42148DB6D" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.ProtectedData, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FF1CA39B5F0F4A5784B3F060A1AEE9FD" + "_FD56A51A1C3951F7EECA29D42148DB6D" { - "Name" = "8:System.Security.Cryptography.ProtectedData.dll" + "Name" = "8:System.IO.Compression.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Security.Cryptography.ProtectedData.dll" + "SourcePath" = "8:System.IO.Compression.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -43211,26 +40379,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FF2E89ADEACA488693DC1A83E1DDA15D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FD863E6FF01F2BA099CEAB21C5ACF521" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.SqlServer.Server, Version=1.0.0.0, Culture=neutral, PublicKeyToken=23ec7fc2d6eaa4a5, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.Handles, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FF2E89ADEACA488693DC1A83E1DDA15D" + "_FD863E6FF01F2BA099CEAB21C5ACF521" { - "Name" = "8:Microsoft.SqlServer.Server.dll" + "Name" = "8:System.Runtime.Handles.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\Microsoft.SqlServer.Server.dll" + "SourcePath" = "8:System.Runtime.Handles.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -43242,26 +40410,26 @@ "PackageAs" = "3:1" "Register" = "3:1" "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FF32F6EB6C9C4DB6B530CB8C4A5A5282" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FDF8C7CAC2674036AFE74F2FD3B5D0E0" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Globalization, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Windows.Controls.Ribbon.resources, Version=9.0.0.0, Culture=es, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FF32F6EB6C9C4DB6B530CB8C4A5A5282" + "_FDF8C7CAC2674036AFE74F2FD3B5D0E0" { - "Name" = "8:System.Globalization.dll" + "Name" = "8:System.Windows.Controls.Ribbon.resources.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Globalization.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\es\\System.Windows.Controls.Ribbon.resources.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_50D95BB66E0E4F02ABA1951CD4EE263F" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -43276,23 +40444,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FF5D01091703492380CB3F05D0985852" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FE8069F25C7542899AA4D3DA4F912B1C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationProvider.resources, Version=9.0.0.0, Culture=pt-BR, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Xml, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FF5D01091703492380CB3F05D0985852" + "_FE8069F25C7542899AA4D3DA4F912B1C" { - "Name" = "8:UIAutomationProvider.resources.dll" + "Name" = "8:System.Security.Cryptography.Xml.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\pt-BR\\UIAutomationProvider.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Security.Cryptography.Xml.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_9A8437D0ADE7402E8451ABF67C350698" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -43307,23 +40475,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FF838842077D44EAA2A6348E18D08E79" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FEEDC4F58B6148F79B34BCD14DEF1B1B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Security, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Caching.Memory, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FF838842077D44EAA2A6348E18D08E79" + "_FEEDC4F58B6148F79B34BCD14DEF1B1B" { - "Name" = "8:System.Net.Security.dll" + "Name" = "8:Microsoft.Extensions.Caching.Memory.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Net.Security.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.Extensions.Caching.Memory.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -43338,23 +40506,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FF955E7B7BEB4C2CBB3C9F9D077CDD5B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FF423F0AB3D042528B09925A0C152C0B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:UIAutomationClient.resources, Version=9.0.0.0, Culture=zh-Hans, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FF955E7B7BEB4C2CBB3C9F9D077CDD5B" + "_FF423F0AB3D042528B09925A0C152C0B" { - "Name" = "8:UIAutomationClient.resources.dll" + "Name" = "8:System.Configuration.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\zh-Hans\\UIAutomationClient.resources.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\System.Configuration.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_A526A21B472242C9B6F4662E9D05A435" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -43369,23 +40537,23 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FFDA339F51CF46BCBAFA4EB8FC160DE7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FFBB9EC9AF5B4F1B87DDA235FB77CCDB" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Private.Uri, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Abstractions, Version=7.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FFDA339F51CF46BCBAFA4EB8FC160DE7" + "_FFBB9EC9AF5B4F1B87DDA235FB77CCDB" { - "Name" = "8:System.Private.Uri.dll" + "Name" = "8:Microsoft.IdentityModel.Abstractions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:..\\bin\\Release\\net9.0-windows\\win-x64\\System.Private.Uri.dll" + "SourcePath" = "8:..\\publish\\setup-win-x64\\Microsoft.IdentityModel.Abstractions.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_DDBA9AE288634B8590F14C46DF698760" + "Folder" = "8:_E5999D70113B4166AB4BD1B0568524BA" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -43406,7 +40574,7 @@ } "Folder" { - "{1525181F-901A-416C-8A58-119130FE478E}:_7EE0DE63F78F4F7190CEB53E3C5B7556" + "{1525181F-901A-416C-8A58-119130FE478E}:_0A0E77A057EB48E2B365A14DEA75C6B5" { "Name" = "8:#1919" "AlwaysCreate" = "11:FALSE" @@ -43417,7 +40585,7 @@ { } } - "{1525181F-901A-416C-8A58-119130FE478E}:_9083507880C4464B8CB1B87D901D4168" + "{1525181F-901A-416C-8A58-119130FE478E}:_4DE06A7424C04875BA28CED73527A2D6" { "Name" = "8:#1916" "AlwaysCreate" = "11:FALSE" @@ -43428,9 +40596,9 @@ { } } - "{3C67513D-01DD-4637-8A68-80971EB9504F}:_AA992EFB9D67439FAE818139696885FF" + "{3C67513D-01DD-4637-8A68-80971EB9504F}:_E5999D70113B4166AB4BD1B0568524BA" { - "DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]" + "DefaultLocation" = "8:[ProgramFiles64Folder][Manufacturer]\\[ProductName]" "Name" = "8:#1925" "AlwaysCreate" = "11:FALSE" "Condition" = "8:" @@ -43438,796 +40606,147 @@ "Property" = "8:TARGETDIR" "Folders" { - "{9EF0B969-E518-4E46-987F-47570745A589}:_00F44C30CA9A41ACACEB801AAAB3459F" - { - "Name" = "8:ja" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C6447289FB374A0E8523EF04C2F0DAF9" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_088154C203C34BBAB42159624C09C835" - { - "Name" = "8:tr" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_15C25D01DAB4467F9658C22FD5E833C6" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_2AC88A8D3AA441D1B81B8A08CC064F09" + "{9EF0B969-E518-4E46-987F-47570745A589}:_05DBECC2336740CDB09A80EB68B7B14F" { - "Name" = "8:cs" + "Name" = "8:de" "AlwaysCreate" = "11:FALSE" "Condition" = "8:" "Transitive" = "11:FALSE" - "Property" = "8:_3B31B125448E478B8A0368935EECA6FD" + "Property" = "8:_1A7DDB99278847C98734E24E767A59C3" "Folders" { } } - "{9EF0B969-E518-4E46-987F-47570745A589}:_33CC24B65D7F45CE96021F8BD3CBA140" + "{9EF0B969-E518-4E46-987F-47570745A589}:_07FEAE190090436A957E9601C38A7170" { - "Name" = "8:de" + "Name" = "8:zh-Hant" "AlwaysCreate" = "11:FALSE" "Condition" = "8:" "Transitive" = "11:FALSE" - "Property" = "8:_E84D19D46B04482E85192D71192A42D6" + "Property" = "8:_A47E09729BF347599D92EC93F4F80A5C" "Folders" { } } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3431D8A1B6884D34A997F6312D509ADD" + "{9EF0B969-E518-4E46-987F-47570745A589}:_154C18835E314DCA89F39AA7646FFC12" { - "Name" = "8:zh-Hans" + "Name" = "8:it" "AlwaysCreate" = "11:FALSE" "Condition" = "8:" "Transitive" = "11:FALSE" - "Property" = "8:_50B694DF53AF4B5AA569DA95924534B8" + "Property" = "8:_6F0BF52747564CF5B4B22ECCB0046818" "Folders" { } } - "{9EF0B969-E518-4E46-987F-47570745A589}:_361F2C8E9B774B959F3E2ADCF4423839" + "{9EF0B969-E518-4E46-987F-47570745A589}:_3A07FF1E066342A19AABED2888E683D3" { - "Name" = "8:pl" + "Name" = "8:ru" "AlwaysCreate" = "11:FALSE" "Condition" = "8:" "Transitive" = "11:FALSE" - "Property" = "8:_EA267E3BA9D149D6A64B429F7682D5BF" + "Property" = "8:_ADE8B857238A458B9AAA9939ED372DB4" "Folders" { } } - "{9EF0B969-E518-4E46-987F-47570745A589}:_4CEEF74C3F5448F59C3FB9AE7B166CD7" + "{9EF0B969-E518-4E46-987F-47570745A589}:_506EF00DD33D4ECF9B29B8A5A859CE45" { - "Name" = "8:it" + "Name" = "8:ko" "AlwaysCreate" = "11:FALSE" "Condition" = "8:" "Transitive" = "11:FALSE" - "Property" = "8:_F4787D8C78AF4DAB97C58C02FD961C60" + "Property" = "8:_E7DA142ABB0C4CB4B73A1DBC835B0014" "Folders" { } } - "{9EF0B969-E518-4E46-987F-47570745A589}:_6484A32FB9E04B12BEA774F87B4F9178" + "{9EF0B969-E518-4E46-987F-47570745A589}:_50D95BB66E0E4F02ABA1951CD4EE263F" { "Name" = "8:es" "AlwaysCreate" = "11:FALSE" "Condition" = "8:" "Transitive" = "11:FALSE" - "Property" = "8:_AC1474E0DFB0458ABAD3737D86C1BA60" + "Property" = "8:_112E79F9D11E4546B157FC5D93F64503" "Folders" { } } - "{9EF0B969-E518-4E46-987F-47570745A589}:_69E478E802BD45489CEFFDA7D2489A56" + "{9EF0B969-E518-4E46-987F-47570745A589}:_76359F5BF5894CC19460472A07F40277" { - "Name" = "8:zh-Hant" + "Name" = "8:zh-Hans" "AlwaysCreate" = "11:FALSE" "Condition" = "8:" "Transitive" = "11:FALSE" - "Property" = "8:_DF584A8364194185B69BA6EFBAA868DD" + "Property" = "8:_1AAEAD1D10DD43388E548533B9102730" "Folders" { } } - "{9EF0B969-E518-4E46-987F-47570745A589}:_6A31EAEF616942BAA6B1605B03F16A21" + "{9EF0B969-E518-4E46-987F-47570745A589}:_7901A3B17F9447C3A81D55DC5033828B" { - "Name" = "8:fr" + "Name" = "8:cs" "AlwaysCreate" = "11:FALSE" "Condition" = "8:" "Transitive" = "11:FALSE" - "Property" = "8:_E5AA0FB7696842D2B6E749C068FB8CC3" + "Property" = "8:_DDF79492FD4B412A83B95F43652B7C89" "Folders" { } } - "{9EF0B969-E518-4E46-987F-47570745A589}:_7F40B34FEF5D4151BE023D9C9B9765CD" + "{9EF0B969-E518-4E46-987F-47570745A589}:_C688DABCFD5B492EB58182172839DAB4" { - "Name" = "8:pt-BR" + "Name" = "8:pl" "AlwaysCreate" = "11:FALSE" "Condition" = "8:" "Transitive" = "11:FALSE" - "Property" = "8:_484EDD4B1D214346952E4E6828282FA4" + "Property" = "8:_D0B4D04CA94D48C4A307A3C44563169A" "Folders" { } } - "{9EF0B969-E518-4E46-987F-47570745A589}:_82E79E0E3EE74769A45AF61DCC289A07" + "{9EF0B969-E518-4E46-987F-47570745A589}:_CAA532AD901F4BF8A56F3FCA4F0F1124" { - "Name" = "8:ko" + "Name" = "8:fr" "AlwaysCreate" = "11:FALSE" "Condition" = "8:" "Transitive" = "11:FALSE" - "Property" = "8:_E2ECAD2F90634078A73588B861B49066" + "Property" = "8:_2C592FC9F88643B980C3317A7ACEE370" "Folders" { } } - "{9EF0B969-E518-4E46-987F-47570745A589}:_97331A14D99E4AE0AEF6F4ADF9756C32" + "{9EF0B969-E518-4E46-987F-47570745A589}:_D14333D71D9548B993E7562D7B181D97" { - "Name" = "8:ru" + "Name" = "8:tr" "AlwaysCreate" = "11:FALSE" "Condition" = "8:" "Transitive" = "11:FALSE" - "Property" = "8:_191480DB69494B98B934AF6893E9F2F1" + "Property" = "8:_22BDD38F884A4E9E98AC0E8449FEB1E5" "Folders" { } } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A5E7D1E52FA34528B9604164AE747BD1" + "{9EF0B969-E518-4E46-987F-47570745A589}:_EF49A53A2F124808B6DA2E203BD36641" { - "Name" = "8:runtimes" + "Name" = "8:ja" "AlwaysCreate" = "11:FALSE" "Condition" = "8:" "Transitive" = "11:FALSE" - "Property" = "8:_0062847A2EFE4BBA827DB925FC703A2B" + "Property" = "8:_82A0FCFAE8E548E483DC6BFAD4AF5D85" "Folders" { - "{9EF0B969-E518-4E46-987F-47570745A589}:_08BBA2ECAA3247EEAB0ABFCBB03B76E8" - { - "Name" = "8:android-x64" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_11289F74608A43FFA186E3B4921CF4E7" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_4836071584BB4609A7D86E3A5CC8A382" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C6346A05719541FC8D4E67EF983CD80E" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_14B66643186B4E2780A5D1B2A9A2534F" - { - "Name" = "8:linux-bionic-arm64" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_490FAB479F894699A1A1A51AD78ED56C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_3E5879F2AE064B8196380C45973B48A6" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_AAD0AD7D0B9E40B8B72107A76CD339AE" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3A43E0DE4DB94D5F9EE8D3C1917CAB73" - { - "Name" = "8:linux-arm" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F85598D206394339B178BE8BED38DA3F" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_AC9642767D3A46E9B23214D6C8A4CD1B" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_E7B985AA7C3544869A6A8CD70BFBCB4E" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_44DE4489C9A74EDDA2BF61FBC8CB8005" - { - "Name" = "8:win-arm64" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4295A999D6F842FD824E14B66872C330" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_F9EE4AFEBF0B4EDC8303DF983A7FBB91" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6928230B9EFC401C897172451DBADD2F" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_45AF27029BE746F68F64C84085A5152F" - { - "Name" = "8:unix" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_23277DDBD68446C69545A48D8218D043" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_E3E65904E2234DFABBA4D68CA764ED7D" - { - "Name" = "8:lib" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BCF036248D1A4C25892BAC227FCCCE83" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_9A2ECD9DD63044F48A32BDAB4694DD4C" - { - "Name" = "8:net9.0" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5386E64F42BC448382D09C297D552B90" - "Folders" - { - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_4F4F029F8E40463EB4AC94B623F1E4F1" - { - "Name" = "8:linux-bionic-x64" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6404025050E949FCB4BFD1ED35DBD650" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_2697142346BF40438E6A50DE6F0E0B11" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_53EDA37FF1BE46CCA80A61BA83E9F6D1" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_6C38127C940B4300B00A10CDD29AF029" - { - "Name" = "8:android-arm64" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_436ADDB3F923438AAF80909D5402A5B0" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_8D36D5DE28394477AE224E82A493F964" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4C7DBD2DC83548D886D965737842F25F" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_7036907F04A0417D90CE02A35A0E139C" - { - "Name" = "8:maccatalyst-arm64" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_E9C3650F683B41CC80F1B011138EF6DB" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_3075B1F801904C33B9506B2EBB7BADDF" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BED2604769D548BC93D11DCAC3CD7F4B" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_868B4B3D06644A8293AC795618F260F6" - { - "Name" = "8:android-x86" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_32AD07F598AD4B748EEBFAAB0E8D2C52" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_3400B3E8DB314CEC99D9A824542C7EEA" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CDCD23CD146249BFA97ECC40E023B443" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_9058E98762EF488D8C56B4A29998F974" - { - "Name" = "8:linux-arm64" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_377EB74DC35141C0A5607CC569D60CAD" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_BD001A4192EB435EA74EDB86759F8B08" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_EA69DC6C9C114F00B4B7A99693348868" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_98A428C021E5431B9929DFA1DE984128" - { - "Name" = "8:osx-x64" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_77A1D3CB9F33447297706CFAB16EEC9C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_3C71CB36E37B4C05B0606DAD9BB91254" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1A92F386B954474CA4D8B5E3E7F3550C" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_993CA482BC284D30AC9B76E887663E65" - { - "Name" = "8:win-x64" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_43E2DD20A5C64FA9B86FDFC3A415F508" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_2BAA1CAAF9E34A7D9978D49DFD9D1DEF" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_3C63D0F806744E008F80DC84F312C039" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A2F6F1260FFF45439F98CB464C4592F4" - { - "Name" = "8:android-arm" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_630E3D67FDCC4334A7A73E25B5B4B2D6" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_F13F59C46A3241FE8AAAAE24AED266B7" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CC90F69F11A844ECBA272F40D93E832E" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_BAEA6FF4EE494660A4A7F65531635473" - { - "Name" = "8:maccatalyst-x64" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F8CA1C5002A94D72B482FBED0ABF633F" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_16870920F920478DB196DBDA5E3CCD5A" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_69D7137EF0504F8488CE7C69DB42BBF1" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_BEB9C7F16E3F4A7E83550B59C76A64ED" - { - "Name" = "8:linux-musl-x64" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6C41D1D354F44042876C3F9B512E71AC" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_7E035F6B43784C0DAD2D91040D78FEBD" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B1B6A5A8962C403287073F0F051D2DD7" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_C7A4436815F34C428ACE398228BB3942" - { - "Name" = "8:linux-x64" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9A4AB60AF1554A9D9FBFB7F1C5C0CF5B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_A6040D6BA2AA4392B2462FEF0965D42F" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8EEA520D4C784141BAC997807CEB5E8E" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D0092DD0628A4DEBACF2DC3C3280CD6E" - { - "Name" = "8:linux-musl-arm" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CB53DBCE6D234B518FBEA8F0182F0C64" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_5CB1342117B642589E8CD9F47E2E9591" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_68536E210D484AC9981C6A5B5034EBFE" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D68988DB6E05435D964DC5853B19E069" - { - "Name" = "8:win" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_263D077C4D934C10A9F53EE8FD8F5CBF" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_D4DEB7A563F84A3C931613B3BEBE0668" - { - "Name" = "8:lib" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_E2E8229009174B4A87B727655B75B608" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_5E5A0D9A59944785B23E8B763BA82CA8" - { - "Name" = "8:net9.0" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9487070725534A9BBFA31624B0F87011" - "Folders" - { - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E3E9D6DCF96A48148E4F6F4FDECB8750" - { - "Name" = "8:win-x86" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_3DA212A6969A4B7B88AD69D606333F3C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_BA2A9005EF164EFF8CDA6E4C91C48566" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4FB73708D2004B189C063B7E8D941D35" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F6FCC98F269D472DA8F038324E6D82E8" - { - "Name" = "8:osx-arm64" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_E36E2BFEB83A4686ABCDC5848E5FD915" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_648279F496114EF689ABC8F7CE40D732" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A1E47BB0F34D4217B5FF5C8A8AA9DD00" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_FD98F074C3094889A6C50534F6784620" - { - "Name" = "8:linux-musl-arm64" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B6E656AC7F5944ADB0EBF441BA8E8A5C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_69C847C8CBB1435D84DE925223C296A4" - { - "Name" = "8:native" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D098405C552944BA84D91F809209915F" - "Folders" - { - } - } - } - } } } - "{9EF0B969-E518-4E46-987F-47570745A589}:_DDBA9AE288634B8590F14C46DF698760" + "{9EF0B969-E518-4E46-987F-47570745A589}:_FE1199FD2AED473F9607036466985701" { - "Name" = "8:win-x64" + "Name" = "8:pt-BR" "AlwaysCreate" = "11:FALSE" "Condition" = "8:" "Transitive" = "11:FALSE" - "Property" = "8:_0AF0E28631F74FE98C5991FD7AA26A98" + "Property" = "8:_2159C812DD6B4892888B99ECEEC30275" "Folders" { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0D6BB22DBA6348629B76C0E2123EBBFD" - { - "Name" = "8:fr" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A52352E287BB4754820885A0AE70E8B3" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_319F794A01F24DA7B010B84BF5746B1F" - { - "Name" = "8:es" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_150777BC621843909F1168F05B5B3B71" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_33866903D6804194A4096F8D1E34C9F3" - { - "Name" = "8:it" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FF8C96115CF241DB92BDBBCBEC1AF0B0" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_33ECECC7E762456A9E89108B3C562998" - { - "Name" = "8:pl" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_928085C76EA4460EA754D5610A8F65E4" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_39C4141125A7444BAD628B61802AD256" - { - "Name" = "8:cs" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8B7B3437AC2441C2BC489C3BE0971622" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_8C6BAC487E12445AAC4169B115BE8835" - { - "Name" = "8:de" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4ABAB33298144708BB3B67E020E988D5" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_98051D1C933E479E8031502C52F83D92" - { - "Name" = "8:ja" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2A480DD5542E49C999443F3AEBC5FDB9" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_9A8437D0ADE7402E8451ABF67C350698" - { - "Name" = "8:pt-BR" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_E55FD695344641808372412BDAC9EB80" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A526A21B472242C9B6F4662E9D05A435" - { - "Name" = "8:zh-Hans" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5007E793AF9447989A15C49E04CAEDD8" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_CB3BE22960A44DC39C9AA84ABE16E22A" - { - "Name" = "8:ko" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_DA4004F1DCFD42D5B686BF2F3B8D5A22" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F050AFEC75CD404984C24AA71672DBCD" - { - "Name" = "8:ru" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B159A956CFBA45C198CB63C6C87E9921" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F3F3E806FBD0440F983B77DA02BEF5A8" - { - "Name" = "8:tr" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BF0C575476EA4EEFB85E0BC146291CBA" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_FFD6EAF1B3444345AC6B6F35CA58BF38" - { - "Name" = "8:zh-Hant" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_E4A120BAE2624658AEBD59D875CA97B6" - "Folders" - { - } - } } } } @@ -44247,22 +40766,22 @@ "Product" { "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:SetupProject" - "ProductCode" = "8:{83362CE2-2558-4198-9E22-896E4285B776}" - "PackageCode" = "8:{81E77274-7BDC-4334-8A98-85212FF7D73C}" - "UpgradeCode" = "8:{2D105427-9E70-4BE8-AA6B-22A5441191D5}" - "AspNetVersion" = "8:" + "ProductName" = "8:Setup1" + "ProductCode" = "8:{71B8681B-6696-43BE-BBA5-CC3B08095C5C}" + "PackageCode" = "8:{B4567D05-042F-4E05-8028-AF56525C698B}" + "UpgradeCode" = "8:{1D4B4A02-85A6-413F-8388-81D419D030E7}" + "AspNetVersion" = "8:2.0.50727.0" "RestartWWWService" = "11:FALSE" "RemovePreviousVersions" = "11:FALSE" "DetectNewerInstalledVersion" = "11:TRUE" "InstallAllUsers" = "11:FALSE" "ProductVersion" = "8:1.0.0" - "Manufacturer" = "8:temp" + "Manufacturer" = "8:Default Company Name" "ARPHELPTELEPHONE" = "8:" "ARPHELPLINK" = "8:" - "Title" = "8:SetupProject" + "Title" = "8:Setup1" "Subject" = "8:" - "ARPCONTACT" = "8:temp" + "ARPCONTACT" = "8:Default Company Name" "Keywords" = "8:" "ARPCOMMENTS" = "8:" "ARPURLINFOABOUT" = "8:" @@ -44270,7 +40789,7 @@ "ARPIconIndex" = "3:0" "SearchPath" = "8:" "UseSystemSearchPath" = "11:TRUE" - "TargetPlatform" = "3:0" + "TargetPlatform" = "3:1" "PreBuildEvent" = "8:" "PostBuildEvent" = "8:" "RunPostBuildEvent" = "3:0" @@ -44281,7 +40800,7 @@ { "Keys" { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_27756B226C65474AB29106509514C065" + "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_4062772F7D104BFF8759B6CDBE8D6C49" { "Name" = "8:Software" "Condition" = "8:" @@ -44290,7 +40809,7 @@ "Transitive" = "11:FALSE" "Keys" { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_542AF1B8A1BC4B2FA6F056E49A1C7A65" + "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_E4944A01FE3D4B7ABBE84CD63D8360E7" { "Name" = "8:[Manufacturer]" "Condition" = "8:" @@ -44315,7 +40834,7 @@ { "Keys" { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_46183F623E6149748493A0005426A5BA" + "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_1018851FB9A8476E897A74B97CB19615" { "Name" = "8:Software" "Condition" = "8:" @@ -44324,7 +40843,7 @@ "Transitive" = "11:FALSE" "Keys" { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_1D4420C100A54AD6A73027CE5972CBCB" + "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_A30496965D934D53902B3EA3CCEA3313" { "Name" = "8:[Manufacturer]" "Condition" = "8:" @@ -44369,21 +40888,7 @@ } "Shortcut" { - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_9352762D942946A78640EDEFE797EFAF" - { - "Name" = "8:Housing" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_6F46DE3BFC204F009FA7ECF6785839DF" - "Folder" = "8:_7EE0DE63F78F4F7190CEB53E3C5B7556" - "WorkingFolder" = "8:_AA992EFB9D67439FAE818139696885FF" - "Icon" = "8:_77E4F905B2BE49CBAE2EB1D1631AB1D4" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_C04E303619E24F2DB24FDA60AA726865" + "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_31C53E1A390348498ED0F4C7D2B5930B" { "Name" = "8:Housing" "Arguments" = "8:" @@ -44391,35 +40896,29 @@ "ShowCmd" = "3:1" "IconIndex" = "3:0" "Transitive" = "11:FALSE" - "Target" = "8:_6F46DE3BFC204F009FA7ECF6785839DF" - "Folder" = "8:_9083507880C4464B8CB1B87D901D4168" - "WorkingFolder" = "8:_AA992EFB9D67439FAE818139696885FF" - "Icon" = "8:_77E4F905B2BE49CBAE2EB1D1631AB1D4" + "Target" = "8:_C3F1B244B6B34159B02E05612D2DB2FA" + "Folder" = "8:_4DE06A7424C04875BA28CED73527A2D6" + "WorkingFolder" = "8:_E5999D70113B4166AB4BD1B0568524BA" + "Icon" = "8:_0A54D85D895B4A41BD3676196CB02DF5" "Feature" = "8:" } } "UserInterface" { - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_0B2B3C64DDE044B8BDD4A544E51019A1" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_502DE8AD417B4BECB09A73C9353455E9" + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_159AA3C024C742B19028A659E6F0894D" { - "Name" = "8:#1902" + "Name" = "8:#1900" "Sequence" = "3:2" - "Attributes" = "3:3" + "Attributes" = "3:1" "Dialogs" { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_763D30EA021D4F34A3A5FF11C3228326" + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_72F8A94BBE64423FA10325BFB9AF3CC7" { - "Sequence" = "3:100" - "DisplayName" = "8:마침" + "Sequence" = "3:200" + "DisplayName" = "8:설치 폴더" "UseDynamicProperties" = "11:TRUE" "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" + "SourcePath" = "8:\\VsdAdminFolderDlg.wid" "Properties" { "BannerBitmap" @@ -44435,28 +40934,35 @@ } } } - } - } - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_728898E38F5B4F63BB191AB26269FFEA" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_77C1E505FFCB4BAA952836505F009FA3" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_A7068761594546C4A4FF98B050E42360" + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F24DEAB1634F41A9BF589501359AD471" + { + "Sequence" = "3:300" + "DisplayName" = "8:설치 확인" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_FAD77071D2194BF6B6E6EBA7826BF87A" { "Sequence" = "3:100" "DisplayName" = "8:환영" "UseDynamicProperties" = "11:TRUE" "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" + "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" "Properties" { "BannerBitmap" @@ -44498,35 +41004,22 @@ } } } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_CFBAEEF66E2D49249845C731A1FE4ACA" - { - "Sequence" = "3:300" - "DisplayName" = "8:설치 확인" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_FEDD89CD08CC40F7A468C52EE7017E71" + } + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_1EAAAA502B504E7487AEE62D6015C984" + { + "Name" = "8:#1901" + "Sequence" = "3:1" + "Attributes" = "3:2" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_477475939C564F0C8C3708DF6D733EE2" { - "Sequence" = "3:200" - "DisplayName" = "8:설치 폴더" + "Sequence" = "3:100" + "DisplayName" = "8:진행률" "UseDynamicProperties" = "11:TRUE" "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" + "SourcePath" = "8:\\VsdProgressDlg.wid" "Properties" { "BannerBitmap" @@ -44540,11 +41033,11 @@ "Setting" = "3:1" "UsePlugInResources" = "11:TRUE" } - "InstallAllUsersVisible" + "ShowProgress" { - "Name" = "8:InstallAllUsersVisible" - "DisplayName" = "8:#1059" - "Description" = "8:#1159" + "Name" = "8:ShowProgress" + "DisplayName" = "8:#1009" + "Description" = "8:#1109" "Type" = "3:5" "ContextData" = "8:1;True=1;False=0" "Attributes" = "3:0" @@ -44557,20 +41050,20 @@ } } } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_7FD045C592874B1A82595F5555848299" + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_21ACD29E25694538B8B08430793F4C8D" { "Name" = "8:#1901" - "Sequence" = "3:1" + "Sequence" = "3:2" "Attributes" = "3:2" "Dialogs" { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_3E78E18C907E4E1C97B467FD2FC42535" + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_3FB66FD60BC74AF2BD964BD8F334A1A2" { "Sequence" = "3:100" "DisplayName" = "8:진행률" "UseDynamicProperties" = "11:TRUE" "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" + "SourcePath" = "8:\\VsdAdminProgressDlg.wid" "Properties" { "BannerBitmap" @@ -44601,20 +41094,32 @@ } } } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_A13A0E779B7A48EC934563B23F5D1573" + "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_4B4A8AFB67F94ACBBB79D176E988DF36" { - "Name" = "8:#1901" + "UseDynamicProperties" = "11:FALSE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdBasicDialogs.wim" + } + "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_4E7D405B36DD42BAB5BBAD5FDCC3426B" + { + "UseDynamicProperties" = "11:FALSE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdUserInterface.wim" + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_81CFE91668DD45D19F19B93DE62296F1" + { + "Name" = "8:#1902" "Sequence" = "3:2" - "Attributes" = "3:2" + "Attributes" = "3:3" "Dialogs" { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_3D93F67CD1D14C1C8E59C267B63A23EE" + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_AB1D086750904AA0B010353733C79F28" { "Sequence" = "3:100" - "DisplayName" = "8:진행률" + "DisplayName" = "8:마침" "UseDynamicProperties" = "11:TRUE" "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" + "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" "Properties" { "BannerBitmap" @@ -44628,37 +41133,46 @@ "Setting" = "3:1" "UsePlugInResources" = "11:TRUE" } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } } } } } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_A7756FB1CA7B40D59EEA52D361AFF217" + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_CA26CBFF892248499D3B2CB4A614694A" { "Name" = "8:#1900" - "Sequence" = "3:2" + "Sequence" = "3:1" "Attributes" = "3:1" "Dialogs" { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_1550F8C5283843B3BF989C9274DF187E" + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_207B47994D814300BC9E7494063EE521" + { + "Sequence" = "3:300" + "DisplayName" = "8:설치 확인" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdConfirmDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_AEA85034AE244100ABF43F2FFC024CE6" { "Sequence" = "3:200" "DisplayName" = "8:설치 폴더" "UseDynamicProperties" = "11:TRUE" "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" + "SourcePath" = "8:\\VsdFolderDlg.wid" "Properties" { "BannerBitmap" @@ -44672,15 +41186,28 @@ "Setting" = "3:1" "UsePlugInResources" = "11:TRUE" } + "InstallAllUsersVisible" + { + "Name" = "8:InstallAllUsersVisible" + "DisplayName" = "8:#1059" + "Description" = "8:#1159" + "Type" = "3:5" + "ContextData" = "8:1;True=1;False=0" + "Attributes" = "3:0" + "Setting" = "3:0" + "Value" = "3:1" + "DefaultValue" = "3:1" + "UsePlugInResources" = "11:TRUE" + } } } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_470D27DFD2494FD09F545BA22163A582" + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_B7DB5FA33BB4411DACA3D73353499E6A" { "Sequence" = "3:100" "DisplayName" = "8:환영" "UseDynamicProperties" = "11:TRUE" "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" + "SourcePath" = "8:\\VsdWelcomeDlg.wid" "Properties" { "BannerBitmap" @@ -44722,38 +41249,16 @@ } } } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F62EB53D5AA0474BBAE07F5754C9614C" - { - "Sequence" = "3:300" - "DisplayName" = "8:설치 확인" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } } } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_E599800DC78848FAB3442A4977A3050D" + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_E75DE7C5094647639F3B36B34A32BAFF" { "Name" = "8:#1902" "Sequence" = "3:1" "Attributes" = "3:3" "Dialogs" { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_47D06E212E464E8E873E1E8A542AA068" + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_88BCDC8FF75D4FBE8D3426C995295C4B" { "Sequence" = "3:100" "DisplayName" = "8:마침" @@ -44796,34 +41301,6 @@ } "ProjectOutput" { - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_D2675585B625457E890FAA451F3B8670" - { - "SourcePath" = "8:..\\obj\\Release\\net9.0-windows\\Housing.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_AA992EFB9D67439FAE818139696885FF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{7364A567-F115-4ACE-9207-C6FDEEF0A394}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } } } } diff --git a/Setup1/setup-build.log b/Setup1/setup-build.log new file mode 100644 index 0000000..801e8bb --- /dev/null +++ b/Setup1/setup-build.log @@ -0,0 +1,71 @@ + +잘못된 프로젝트 + +사용법: +devenv [solutionfile | projectfile | folder | anyfile.ext] [switches] + +devenv의 첫 번째 인수는 일반적으로 솔루션 파일, 프로젝트 파일 또는 폴더입니다. +다음을 사용할 수도 있습니다. 다른 파일이 자동으로 열리게 하려면 해당 파일을 첫째 인수로 +사용할 수도 있습니다. 프로젝트 파일을 입력하면 IDE에서 +프로젝트 파일의 부모 디렉터리에서 프로젝트 파일과 +기본 이름이 같은 .sln 파일을 찾습니다. 그러한 .sln 파일이 없으면 +IDE는 프로젝트를 참조하는 단일 .sln 파일을 찾습니다. +단일 .sln 파일도 없으면 IDE는 프로젝트 파일과 기본 이름이 같은 기본 .sln +파일 이름을 사용하여 저장되지 않은 솔루션을 만듭니다. + +명령줄 빌드: +devenv solutionfile.sln /build [ solutionconfig ] [ /project projectnameorfile [ /projectconfig name ] ] +사용 가능한 명령줄 스위치: + +/Build 지정한 솔루션 구성으로 솔루션이나 프로젝트를 + 빌드합니다. "Debug"를 예로 들 수 있습니다. 여러 플랫폼을 + 사용할 수 있으면 구성 이름에 플랫폼 이름을 명시하고 + 따옴표로 묶어야 합니다(예: "Debug|Win32"). +/Clean 빌드 출력을 삭제합니다. +/Command IDE를 시작하고 명령을 실행합니다. +/Deploy 지정한 빌드 구성을 빌드하여 배포합니다. +/DoNotLoadProjects 모든 프로젝트를 로드하지 않고 지정된 솔루션을 엽니다. +/Edit 이 애플리케이션의 실행 중인 인스턴스에서 지정한 파일을 엽니다. + 실행 중인 인스턴스가 없으면 단순화된 창 레이아웃을 사용하여 + 새 인스턴스를 시작합니다. +/LCID IDE에서 UI에 대한 기본 언어를 설정합니다. +/Log 문제 해결을 위해 IDE 동작을 지정한 파일에 기록합니다. +/NoVSIP VSIP 테스트용 VSIP 개발자 라이선스 키를 사용할 수 없게 합니다. +/Out 빌드 로그를 지정한 파일에 추가합니다. +/Project 빌드, 정리 또는 배포할 프로젝트를 지정합니다. + /Build, /Rebuild, /Clean 또는 /Deploy와 함께 사용해야 합니다. +/ProjectConfig 솔루션 구성에 지정된 프로젝트 구성을 + 재정의합니다. "Debug"를 예로 들 수 있습니다. 여러 플랫폼을 + 사용할 수 있으면 구성 이름에 플랫폼 이름을 명시하고 + 따옴표로 묶어야 합니다(예: "Debug|Win32"). + /Project와 함께 사용해야 합니다. +/Rebuild 지정한 구성으로 솔루션이나 프로젝트를 + 정리하고 빌드합니다. +/ResetSettings IDE의 기본 설정을 복원합니다. 필요한 경우 사용자가 지정한 + VSSettings 파일로 다시 설정할 수 있습니다. +/ResetSkipPkgs VSPackages에 추가된 모든 SkipLoading 태그를 지웁니다. +/Run 지정한 솔루션을 컴파일하고 실행합니다. +/RunExit 지정한 솔루션을 컴파일하고 실행한 다음, IDE를 닫습니다. +/SafeMode 최소 창을 로드하는 안전 모드에서 IDE를 시작합니다. +/Upgrade 프로젝트 또는 솔루션과 그 안에 포함된 모든 프로젝트를 업그레이드합니다. + 이러한 파일의 백업은 적절히 만들어집니다. + 백업 프로세스에 대한 자세한 내용은 'Visual Studio 변환 마법사' + 도움말을 참조하세요. + +제품별 스위치: + +/debugexe 지정한 실행 파일을 디버깅하도록 엽니다. 명령줄의 나머지 + 가 이 실행 파일에 인수로 전달됩니다. +/diff 두 파일을 비교합니다. 4개의 매개 변수 사용: + SourceFile, TargetFile, SourceDisplayName(선택 사항), + TargetDisplayName(선택 사항) +/TfsLink 팀 탐색기를 열고 입력한 아티팩트 URI에 대해 + 뷰어를 시작합니다(등록된 경우). + +명령줄에서 디버거를 연결하려면 다음 명령을 사용하세요. + VsJITDebugger.exe -p + +오후 8:47에 빌드를 시작함... +========== 빌드: 0 성공 또는 최신 버전, 0 실패, 0 건너뛰기 ========== +========== 빌드이(가) 오후 8:47에 완료되었으며, 00.059 초이(가) 걸림 ========== + diff --git a/SetupProject/Release/SetupProject.tmp b/SetupProject/Release/SetupProject.tmp deleted file mode 100644 index f73127b..0000000 Binary files a/SetupProject/Release/SetupProject.tmp and /dev/null differ diff --git a/UpgradeLog.htm b/UpgradeLog.htm new file mode 100644 index 0000000..774c0b2 --- /dev/null +++ b/UpgradeLog.htm @@ -0,0 +1,274 @@ + + + + 마이그레이션 보고서 +

+ 마이그레이션 보고서 -

\ No newline at end of file diff --git a/UpgradeLog2.htm b/UpgradeLog2.htm new file mode 100644 index 0000000..774c0b2 --- /dev/null +++ b/UpgradeLog2.htm @@ -0,0 +1,274 @@ + + + + 마이그레이션 보고서 +

+ 마이그레이션 보고서 -

\ No newline at end of file diff --git a/UpgradeLog3.htm b/UpgradeLog3.htm new file mode 100644 index 0000000..774c0b2 --- /dev/null +++ b/UpgradeLog3.htm @@ -0,0 +1,274 @@ + + + + 마이그레이션 보고서 +

+ 마이그레이션 보고서 -

\ No newline at end of file diff --git a/init.sql b/init.sql index 3676d4a..91eb954 100644 --- a/init.sql +++ b/init.sql @@ -1,5 +1,5 @@ -- Run this script against the Housing database before running the app. --- It creates the login table and login procedures. +-- It creates the login tables and login procedures. IF OBJECT_ID(N'dbo.Operator_Account', N'U') IS NULL BEGIN @@ -35,6 +35,22 @@ BEGIN END; GO +IF OBJECT_ID(N'dbo.Operator_Process', N'U') IS NULL +BEGIN + CREATE TABLE dbo.Operator_Process + ( + [Operator] NVARCHAR(10) NOT NULL, + [ProcessName] NVARCHAR(30) NOT NULL, + [CreatedAt] DATETIME2(0) NOT NULL + CONSTRAINT DF_Operator_Process_CreatedAt DEFAULT (SYSDATETIME()), + CONSTRAINT PK_Operator_Process PRIMARY KEY ([Operator], [ProcessName]), + CONSTRAINT FK_Operator_Process_Operator_Account FOREIGN KEY ([Operator]) + REFERENCES dbo.Operator_Account ([Operator]) + ON DELETE CASCADE + ); +END; +GO + IF EXISTS (SELECT 1 FROM dbo.Operator_Account WHERE [Operator] = N'su') BEGIN UPDATE dbo.Operator_Account @@ -58,9 +74,31 @@ BEGIN END; GO +IF NOT EXISTS +( + SELECT 1 + FROM dbo.Operator_Process + WHERE [Operator] = N'su' + AND [ProcessName] = N'Housing' +) +BEGIN + INSERT INTO dbo.Operator_Process + ( + [Operator], + [ProcessName] + ) + VALUES + ( + N'su', + N'Housing' + ); +END; +GO + CREATE OR ALTER PROCEDURE dbo.CheckOperator @Operator NVARCHAR(10), - @Password NVARCHAR(50) + @Password NVARCHAR(50), + @ProcessName NVARCHAR(30) = N'Housing' AS BEGIN SET NOCOUNT ON; @@ -70,9 +108,12 @@ BEGIN WHEN EXISTS ( SELECT 1 - FROM dbo.Operator_Account - WHERE [Operator] = @Operator - AND [Password] = @Password + FROM dbo.Operator_Account AS account + INNER JOIN dbo.Operator_Process AS process + ON process.[Operator] = account.[Operator] + WHERE account.[Operator] = @Operator + AND account.[Password] = @Password + AND process.[ProcessName] = @ProcessName ) THEN 1 ELSE 0 @@ -82,20 +123,22 @@ GO CREATE OR ALTER PROCEDURE dbo.SaveOperator @Operator NVARCHAR(10), - @Password NVARCHAR(50) + @Password NVARCHAR(50), + @ProcessName NVARCHAR(30) = N'Housing' AS BEGIN SET NOCOUNT ON; + SET XACT_ABORT ON; - IF EXISTS (SELECT 1 FROM dbo.Operator_Account WHERE [Operator] = @Operator) - BEGIN - UPDATE dbo.Operator_Account - SET - [Password] = @Password, - [UpdatedAt] = SYSDATETIME() - WHERE [Operator] = @Operator; - END - ELSE + BEGIN TRANSACTION; + + UPDATE dbo.Operator_Account + SET + [Password] = @Password, + [UpdatedAt] = SYSDATETIME() + WHERE [Operator] = @Operator; + + IF @@ROWCOUNT = 0 BEGIN INSERT INTO dbo.Operator_Account ( @@ -108,5 +151,27 @@ BEGIN @Password ); END; + + IF NOT EXISTS + ( + SELECT 1 + FROM dbo.Operator_Process + WHERE [Operator] = @Operator + AND [ProcessName] = @ProcessName + ) + BEGIN + INSERT INTO dbo.Operator_Process + ( + [Operator], + [ProcessName] + ) + VALUES + ( + @Operator, + @ProcessName + ); + END; + + COMMIT TRANSACTION; END; GO diff --git a/installer/HousingSetup.sed b/installer/HousingSetup.sed new file mode 100644 index 0000000..7190cea --- /dev/null +++ b/installer/HousingSetup.sed @@ -0,0 +1,575 @@ +[Version] +Class=IEXPRESS +SEDVersion=3 +[Options] +PackagePurpose=InstallApp +ShowInstallProgramWindow=0 +HideExtractAnimation=1 +UseLongFileName=1 +InsideCompressed=0 +CAB_FixedSize=0 +CAB_ResvCodeSigning=0 +RebootMode=N +InstallPrompt=%InstallPrompt% +DisplayLicense=%DisplayLicense% +FinishMessage=%FinishMessage% +TargetName=%TargetName% +FriendlyName=%FriendlyName% +AppLaunched=%AppLaunched% +PostInstallCmd=%PostInstallCmd% +AdminQuietInstCmd=%AdminQuietInstCmd% +UserQuietInstCmd=%UserQuietInstCmd% +SourceFiles=SourceFiles +[Strings] +InstallPrompt= +DisplayLicense= +FinishMessage=AMO Housing setup completed. +TargetName=C:\Users\guseo\Desktop\AMO_Housing\installer\output\HousingSetup.exe +FriendlyName=AMO Housing Setup +AppLaunched=install.cmd +PostInstallCmd= +AdminQuietInstCmd=install.cmd +UserQuietInstCmd=install.cmd +FILE0="Accessibility.dll" +FILE1="Azure.Core.dll" +FILE2="Azure.Identity.dll" +FILE3="clretwrc.dll" +FILE4="clrgc.dll" +FILE5="clrgcexp.dll" +FILE6="clrjit.dll" +FILE7="coreclr.dll" +FILE8="createdump.exe" +FILE9="D3DCompiler_47_cor3.dll" +FILE10="Database.ini" +FILE11="DirectWriteForwarder.dll" +FILE12="Hardware.ini" +FILE13="hostfxr.dll" +FILE14="hostpolicy.dll" +FILE15="Housing.deps.json" +FILE16="Housing.dll" +FILE17="Housing.exe" +FILE18="Housing.pdb" +FILE19="Housing.runtimeconfig.json" +FILE20="Housing_voltage_current_icon.ico" +FILE21="init.sql" +FILE22="InspectionSettings.ini" +FILE23="install.cmd" +FILE24="install.ps1" +FILE25="Microsoft.Bcl.AsyncInterfaces.dll" +FILE26="Microsoft.Bcl.Cryptography.dll" +FILE27="Microsoft.CSharp.dll" +FILE28="Microsoft.Data.SqlClient.dll" +FILE29="Microsoft.Data.SqlClient.SNI.dll" +FILE30="Microsoft.DiaSymReader.Native.amd64.dll" +FILE31="Microsoft.Extensions.Caching.Abstractions.dll" +FILE32="Microsoft.Extensions.Caching.Memory.dll" +FILE33="Microsoft.Extensions.DependencyInjection.Abstractions.dll" +FILE34="Microsoft.Extensions.Logging.Abstractions.dll" +FILE35="Microsoft.Extensions.Options.dll" +FILE36="Microsoft.Extensions.Primitives.dll" +FILE37="Microsoft.Identity.Client.dll" +FILE38="Microsoft.Identity.Client.Extensions.Msal.dll" +FILE39="Microsoft.IdentityModel.Abstractions.dll" +FILE40="Microsoft.IdentityModel.JsonWebTokens.dll" +FILE41="Microsoft.IdentityModel.Logging.dll" +FILE42="Microsoft.IdentityModel.Protocols.dll" +FILE43="Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" +FILE44="Microsoft.IdentityModel.Tokens.dll" +FILE45="Microsoft.SqlServer.Server.dll" +FILE46="Microsoft.VisualBasic.Core.dll" +FILE47="Microsoft.VisualBasic.dll" +FILE48="Microsoft.Win32.Primitives.dll" +FILE49="Microsoft.Win32.Registry.AccessControl.dll" +FILE50="Microsoft.Win32.Registry.dll" +FILE51="Microsoft.Win32.SystemEvents.dll" +FILE52="mscordaccore.dll" +FILE53="mscordaccore_amd64_amd64_9.0.1726.26416.dll" +FILE54="mscordbi.dll" +FILE55="mscorlib.dll" +FILE56="mscorrc.dll" +FILE57="msquic.dll" +FILE58="netstandard.dll" +FILE59="PenImc_cor3.dll" +FILE60="PresentationCore.dll" +FILE61="PresentationFramework.Aero.dll" +FILE62="PresentationFramework.Aero2.dll" +FILE63="PresentationFramework.AeroLite.dll" +FILE64="PresentationFramework.Classic.dll" +FILE65="PresentationFramework.dll" +FILE66="PresentationFramework.Fluent.dll" +FILE67="PresentationFramework.Luna.dll" +FILE68="PresentationFramework.Royale.dll" +FILE69="PresentationFramework-SystemCore.dll" +FILE70="PresentationFramework-SystemData.dll" +FILE71="PresentationFramework-SystemDrawing.dll" +FILE72="PresentationFramework-SystemXml.dll" +FILE73="PresentationFramework-SystemXmlLinq.dll" +FILE74="PresentationNative_cor3.dll" +FILE75="PresentationUI.dll" +FILE76="ReachFramework.dll" +FILE77="System.AppContext.dll" +FILE78="System.Buffers.dll" +FILE79="System.ClientModel.dll" +FILE80="System.CodeDom.dll" +FILE81="System.Collections.Concurrent.dll" +FILE82="System.Collections.dll" +FILE83="System.Collections.Immutable.dll" +FILE84="System.Collections.NonGeneric.dll" +FILE85="System.Collections.Specialized.dll" +FILE86="System.ComponentModel.Annotations.dll" +FILE87="System.ComponentModel.DataAnnotations.dll" +FILE88="System.ComponentModel.dll" +FILE89="System.ComponentModel.EventBasedAsync.dll" +FILE90="System.ComponentModel.Primitives.dll" +FILE91="System.ComponentModel.TypeConverter.dll" +FILE92="System.Configuration.ConfigurationManager.dll" +FILE93="System.Configuration.dll" +FILE94="System.Console.dll" +FILE95="System.Core.dll" +FILE96="System.Data.Common.dll" +FILE97="System.Data.DataSetExtensions.dll" +FILE98="System.Data.dll" +FILE99="System.Diagnostics.Contracts.dll" +FILE100="System.Diagnostics.Debug.dll" +FILE101="System.Diagnostics.DiagnosticSource.dll" +FILE102="System.Diagnostics.EventLog.dll" +FILE103="System.Diagnostics.EventLog.Messages.dll" +FILE104="System.Diagnostics.FileVersionInfo.dll" +FILE105="System.Diagnostics.PerformanceCounter.dll" +FILE106="System.Diagnostics.Process.dll" +FILE107="System.Diagnostics.StackTrace.dll" +FILE108="System.Diagnostics.TextWriterTraceListener.dll" +FILE109="System.Diagnostics.Tools.dll" +FILE110="System.Diagnostics.TraceSource.dll" +FILE111="System.Diagnostics.Tracing.dll" +FILE112="System.DirectoryServices.dll" +FILE113="System.dll" +FILE114="System.Drawing.dll" +FILE115="System.Drawing.Primitives.dll" +FILE116="System.Dynamic.Runtime.dll" +FILE117="System.Formats.Asn1.dll" +FILE118="System.Formats.Nrbf.dll" +FILE119="System.Formats.Tar.dll" +FILE120="System.Globalization.Calendars.dll" +FILE121="System.Globalization.dll" +FILE122="System.Globalization.Extensions.dll" +FILE123="System.IdentityModel.Tokens.Jwt.dll" +FILE124="System.IO.Compression.Brotli.dll" +FILE125="System.IO.Compression.dll" +FILE126="System.IO.Compression.FileSystem.dll" +FILE127="System.IO.Compression.Native.dll" +FILE128="System.IO.Compression.ZipFile.dll" +FILE129="System.IO.dll" +FILE130="System.IO.FileSystem.AccessControl.dll" +FILE131="System.IO.FileSystem.dll" +FILE132="System.IO.FileSystem.DriveInfo.dll" +FILE133="System.IO.FileSystem.Primitives.dll" +FILE134="System.IO.FileSystem.Watcher.dll" +FILE135="System.IO.IsolatedStorage.dll" +FILE136="System.IO.MemoryMappedFiles.dll" +FILE137="System.IO.Packaging.dll" +FILE138="System.IO.Pipelines.dll" +FILE139="System.IO.Pipes.AccessControl.dll" +FILE140="System.IO.Pipes.dll" +FILE141="System.IO.Ports.dll" +FILE142="System.IO.UnmanagedMemoryStream.dll" +FILE143="System.Linq.dll" +FILE144="System.Linq.Expressions.dll" +FILE145="System.Linq.Parallel.dll" +FILE146="System.Linq.Queryable.dll" +FILE147="System.Memory.Data.dll" +FILE148="System.Memory.dll" +FILE149="System.Net.dll" +FILE150="System.Net.Http.dll" +FILE151="System.Net.Http.Json.dll" +FILE152="System.Net.HttpListener.dll" +FILE153="System.Net.Mail.dll" +FILE154="System.Net.NameResolution.dll" +FILE155="System.Net.NetworkInformation.dll" +FILE156="System.Net.Ping.dll" +FILE157="System.Net.Primitives.dll" +FILE158="System.Net.Quic.dll" +FILE159="System.Net.Requests.dll" +FILE160="System.Net.Security.dll" +FILE161="System.Net.ServicePoint.dll" +FILE162="System.Net.Sockets.dll" +FILE163="System.Net.WebClient.dll" +FILE164="System.Net.WebHeaderCollection.dll" +FILE165="System.Net.WebProxy.dll" +FILE166="System.Net.WebSockets.Client.dll" +FILE167="System.Net.WebSockets.dll" +FILE168="System.Numerics.dll" +FILE169="System.Numerics.Vectors.dll" +FILE170="System.ObjectModel.dll" +FILE171="System.Printing.dll" +FILE172="System.Private.CoreLib.dll" +FILE173="System.Private.DataContractSerialization.dll" +FILE174="System.Private.Uri.dll" +FILE175="System.Private.Xml.dll" +FILE176="System.Private.Xml.Linq.dll" +FILE177="System.Reflection.DispatchProxy.dll" +FILE178="System.Reflection.dll" +FILE179="System.Reflection.Emit.dll" +FILE180="System.Reflection.Emit.ILGeneration.dll" +FILE181="System.Reflection.Emit.Lightweight.dll" +FILE182="System.Reflection.Extensions.dll" +FILE183="System.Reflection.Metadata.dll" +FILE184="System.Reflection.Primitives.dll" +FILE185="System.Reflection.TypeExtensions.dll" +FILE186="System.Resources.Extensions.dll" +FILE187="System.Resources.Reader.dll" +FILE188="System.Resources.ResourceManager.dll" +FILE189="System.Resources.Writer.dll" +FILE190="System.Runtime.CompilerServices.Unsafe.dll" +FILE191="System.Runtime.CompilerServices.VisualC.dll" +FILE192="System.Runtime.dll" +FILE193="System.Runtime.Extensions.dll" +FILE194="System.Runtime.Handles.dll" +FILE195="System.Runtime.InteropServices.dll" +FILE196="System.Runtime.InteropServices.JavaScript.dll" +FILE197="System.Runtime.InteropServices.RuntimeInformation.dll" +FILE198="System.Runtime.Intrinsics.dll" +FILE199="System.Runtime.Loader.dll" +FILE200="System.Runtime.Numerics.dll" +FILE201="System.Runtime.Serialization.dll" +FILE202="System.Runtime.Serialization.Formatters.dll" +FILE203="System.Runtime.Serialization.Json.dll" +FILE204="System.Runtime.Serialization.Primitives.dll" +FILE205="System.Runtime.Serialization.Xml.dll" +FILE206="System.Security.AccessControl.dll" +FILE207="System.Security.Claims.dll" +FILE208="System.Security.Cryptography.Algorithms.dll" +FILE209="System.Security.Cryptography.Cng.dll" +FILE210="System.Security.Cryptography.Csp.dll" +FILE211="System.Security.Cryptography.dll" +FILE212="System.Security.Cryptography.Encoding.dll" +FILE213="System.Security.Cryptography.OpenSsl.dll" +FILE214="System.Security.Cryptography.Pkcs.dll" +FILE215="System.Security.Cryptography.Primitives.dll" +FILE216="System.Security.Cryptography.ProtectedData.dll" +FILE217="System.Security.Cryptography.X509Certificates.dll" +FILE218="System.Security.Cryptography.Xml.dll" +FILE219="System.Security.dll" +FILE220="System.Security.Permissions.dll" +FILE221="System.Security.Principal.dll" +FILE222="System.Security.Principal.Windows.dll" +FILE223="System.Security.SecureString.dll" +FILE224="System.ServiceModel.Web.dll" +FILE225="System.ServiceProcess.dll" +FILE226="System.Text.Encoding.CodePages.dll" +FILE227="System.Text.Encoding.dll" +FILE228="System.Text.Encoding.Extensions.dll" +FILE229="System.Text.Encodings.Web.dll" +FILE230="System.Text.Json.dll" +FILE231="System.Text.RegularExpressions.dll" +FILE232="System.Threading.AccessControl.dll" +FILE233="System.Threading.Channels.dll" +FILE234="System.Threading.dll" +FILE235="System.Threading.Overlapped.dll" +FILE236="System.Threading.Tasks.Dataflow.dll" +FILE237="System.Threading.Tasks.dll" +FILE238="System.Threading.Tasks.Extensions.dll" +FILE239="System.Threading.Tasks.Parallel.dll" +FILE240="System.Threading.Thread.dll" +FILE241="System.Threading.ThreadPool.dll" +FILE242="System.Threading.Timer.dll" +FILE243="System.Transactions.dll" +FILE244="System.Transactions.Local.dll" +FILE245="System.ValueTuple.dll" +FILE246="System.Web.dll" +FILE247="System.Web.HttpUtility.dll" +FILE248="System.Windows.Controls.Ribbon.dll" +FILE249="System.Windows.dll" +FILE250="System.Windows.Extensions.dll" +FILE251="System.Windows.Input.Manipulations.dll" +FILE252="System.Windows.Presentation.dll" +FILE253="System.Xaml.dll" +FILE254="System.Xml.dll" +FILE255="System.Xml.Linq.dll" +FILE256="System.Xml.ReaderWriter.dll" +FILE257="System.Xml.Serialization.dll" +FILE258="System.Xml.XDocument.dll" +FILE259="System.Xml.XmlDocument.dll" +FILE260="System.Xml.XmlSerializer.dll" +FILE261="System.Xml.XPath.dll" +FILE262="System.Xml.XPath.XDocument.dll" +FILE263="UIAutomationClient.dll" +FILE264="UIAutomationClientSideProviders.dll" +FILE265="UIAutomationProvider.dll" +FILE266="UIAutomationTypes.dll" +FILE267="vcruntime140_cor3.dll" +FILE268="WindowsBase.dll" +FILE269="wpfgfx_cor3.dll" +[SourceFiles] +SourceFiles0=C:\Users\guseo\Desktop\AMO_Housing\installer\staging\ +[SourceFiles0] +%FILE0%= +%FILE1%= +%FILE2%= +%FILE3%= +%FILE4%= +%FILE5%= +%FILE6%= +%FILE7%= +%FILE8%= +%FILE9%= +%FILE10%= +%FILE11%= +%FILE12%= +%FILE13%= +%FILE14%= +%FILE15%= +%FILE16%= +%FILE17%= +%FILE18%= +%FILE19%= +%FILE20%= +%FILE21%= +%FILE22%= +%FILE23%= +%FILE24%= +%FILE25%= +%FILE26%= +%FILE27%= +%FILE28%= +%FILE29%= +%FILE30%= +%FILE31%= +%FILE32%= +%FILE33%= +%FILE34%= +%FILE35%= +%FILE36%= +%FILE37%= +%FILE38%= +%FILE39%= +%FILE40%= +%FILE41%= +%FILE42%= +%FILE43%= +%FILE44%= +%FILE45%= +%FILE46%= +%FILE47%= +%FILE48%= +%FILE49%= +%FILE50%= +%FILE51%= +%FILE52%= +%FILE53%= +%FILE54%= +%FILE55%= +%FILE56%= +%FILE57%= +%FILE58%= +%FILE59%= +%FILE60%= +%FILE61%= +%FILE62%= +%FILE63%= +%FILE64%= +%FILE65%= +%FILE66%= +%FILE67%= +%FILE68%= +%FILE69%= +%FILE70%= +%FILE71%= +%FILE72%= +%FILE73%= +%FILE74%= +%FILE75%= +%FILE76%= +%FILE77%= +%FILE78%= +%FILE79%= +%FILE80%= +%FILE81%= +%FILE82%= +%FILE83%= +%FILE84%= +%FILE85%= +%FILE86%= +%FILE87%= +%FILE88%= +%FILE89%= +%FILE90%= +%FILE91%= +%FILE92%= +%FILE93%= +%FILE94%= +%FILE95%= +%FILE96%= +%FILE97%= +%FILE98%= +%FILE99%= +%FILE100%= +%FILE101%= +%FILE102%= +%FILE103%= +%FILE104%= +%FILE105%= +%FILE106%= +%FILE107%= +%FILE108%= +%FILE109%= +%FILE110%= +%FILE111%= +%FILE112%= +%FILE113%= +%FILE114%= +%FILE115%= +%FILE116%= +%FILE117%= +%FILE118%= +%FILE119%= +%FILE120%= +%FILE121%= +%FILE122%= +%FILE123%= +%FILE124%= +%FILE125%= +%FILE126%= +%FILE127%= +%FILE128%= +%FILE129%= +%FILE130%= +%FILE131%= +%FILE132%= +%FILE133%= +%FILE134%= +%FILE135%= +%FILE136%= +%FILE137%= +%FILE138%= +%FILE139%= +%FILE140%= +%FILE141%= +%FILE142%= +%FILE143%= +%FILE144%= +%FILE145%= +%FILE146%= +%FILE147%= +%FILE148%= +%FILE149%= +%FILE150%= +%FILE151%= +%FILE152%= +%FILE153%= +%FILE154%= +%FILE155%= +%FILE156%= +%FILE157%= +%FILE158%= +%FILE159%= +%FILE160%= +%FILE161%= +%FILE162%= +%FILE163%= +%FILE164%= +%FILE165%= +%FILE166%= +%FILE167%= +%FILE168%= +%FILE169%= +%FILE170%= +%FILE171%= +%FILE172%= +%FILE173%= +%FILE174%= +%FILE175%= +%FILE176%= +%FILE177%= +%FILE178%= +%FILE179%= +%FILE180%= +%FILE181%= +%FILE182%= +%FILE183%= +%FILE184%= +%FILE185%= +%FILE186%= +%FILE187%= +%FILE188%= +%FILE189%= +%FILE190%= +%FILE191%= +%FILE192%= +%FILE193%= +%FILE194%= +%FILE195%= +%FILE196%= +%FILE197%= +%FILE198%= +%FILE199%= +%FILE200%= +%FILE201%= +%FILE202%= +%FILE203%= +%FILE204%= +%FILE205%= +%FILE206%= +%FILE207%= +%FILE208%= +%FILE209%= +%FILE210%= +%FILE211%= +%FILE212%= +%FILE213%= +%FILE214%= +%FILE215%= +%FILE216%= +%FILE217%= +%FILE218%= +%FILE219%= +%FILE220%= +%FILE221%= +%FILE222%= +%FILE223%= +%FILE224%= +%FILE225%= +%FILE226%= +%FILE227%= +%FILE228%= +%FILE229%= +%FILE230%= +%FILE231%= +%FILE232%= +%FILE233%= +%FILE234%= +%FILE235%= +%FILE236%= +%FILE237%= +%FILE238%= +%FILE239%= +%FILE240%= +%FILE241%= +%FILE242%= +%FILE243%= +%FILE244%= +%FILE245%= +%FILE246%= +%FILE247%= +%FILE248%= +%FILE249%= +%FILE250%= +%FILE251%= +%FILE252%= +%FILE253%= +%FILE254%= +%FILE255%= +%FILE256%= +%FILE257%= +%FILE258%= +%FILE259%= +%FILE260%= +%FILE261%= +%FILE262%= +%FILE263%= +%FILE264%= +%FILE265%= +%FILE266%= +%FILE267%= +%FILE268%= +%FILE269%= diff --git a/installer/output/HousingSetup.exe b/installer/output/HousingSetup.exe new file mode 100644 index 0000000..1d36cdf Binary files /dev/null and b/installer/output/HousingSetup.exe differ diff --git a/installer/staging/Accessibility.dll b/installer/staging/Accessibility.dll new file mode 100644 index 0000000..490edee Binary files /dev/null and b/installer/staging/Accessibility.dll differ diff --git a/installer/staging/Azure.Core.dll b/installer/staging/Azure.Core.dll new file mode 100644 index 0000000..8883ec9 Binary files /dev/null and b/installer/staging/Azure.Core.dll differ diff --git a/installer/staging/Azure.Identity.dll b/installer/staging/Azure.Identity.dll new file mode 100644 index 0000000..ea19200 Binary files /dev/null and b/installer/staging/Azure.Identity.dll differ diff --git a/installer/staging/D3DCompiler_47_cor3.dll b/installer/staging/D3DCompiler_47_cor3.dll new file mode 100644 index 0000000..948cc90 Binary files /dev/null and b/installer/staging/D3DCompiler_47_cor3.dll differ diff --git a/installer/staging/Database.ini b/installer/staging/Database.ini new file mode 100644 index 0000000..8f32133 --- /dev/null +++ b/installer/staging/Database.ini @@ -0,0 +1,13 @@ +[Database] +IP=127.0.0.1 +Database=Housing +DbId=sa +DbPw=your_password +Encrypt=True +TrustServerCertificate=True +Timeout=5 + +[Login] +Procedure=dbo.CheckOperator +ProcessName=Housing +OfflinePreview=true diff --git a/installer/staging/DirectWriteForwarder.dll b/installer/staging/DirectWriteForwarder.dll new file mode 100644 index 0000000..4a0fb1a Binary files /dev/null and b/installer/staging/DirectWriteForwarder.dll differ diff --git a/installer/staging/Hardware.ini b/installer/staging/Hardware.ini new file mode 100644 index 0000000..cafa5ef --- /dev/null +++ b/installer/staging/Hardware.ini @@ -0,0 +1,78 @@ +[Board] +PortName=COM5 +BaudRate=115200 +ReadTimeout=5000 +PreConnectCommand=x00o +ConnectCommand=x00c_001101:owt28006727ea97c7801 +ReadIdCommand=x00c_001101:ow2800326003e +PostReadIdCommand=x00o +CalDefaultCommand=x00c_001001:owt28006727ea97c7801 +EndToken= +DtrEnable=false +RtsEnable=false + +[BarcodeScanner] +Enabled=true +PortName=Auto +BaudRate=9600 +ReadTimeout=500 +IdleCommitMilliseconds=250 +DtrEnable=true +RtsEnable=true + +[StartSignal] +; USB-6501 +Enabled=true +Connection=Ni6501 +PhysicalChannel=Dev1/port0/line0 +ActiveState=High +PollIntervalMilliseconds=50 +TimeoutMilliseconds=30000 +PostSignalDelayMilliseconds=2000 +RequireInactiveBeforeStart=true + +[Equipment] +; V 출력: Keysight 34465A DMM 값 +; A 출력: Keysight E36233A Power Supply CH1 Current 값 +; USB 장비는 Keysight Connection Expert 또는 NI MAX에서 보이는 VISA 주소를 Resource +Timeout=5000 +SettleMilliseconds=300 +PreBoardCommand=VOLT 5, (@2);OUTP ON, (@2) +PreBoardDelayMilliseconds=2000 +LogoutCommand=OUTP OFF, (@1);OUTP OFF, (@2) + +; 34465A DMM +VoltageConnection=LAN +VoltageResource= +VoltageIdnMatch=34465A +VoltageHost=192.168.200.3 +VoltagePort=5025 +VoltageSetupCommand= +VoltageReadCommand=MEAS:VOLT:DC? + +; E36233A Power Supply +CurrentConnection=LAN +CurrentResource= +CurrentIdnMatch=E36233A +; Change this to the E36233A LAN IP if the instrument uses a different address. +CurrentHost=192.168.200.111 +CurrentPort=5025 +CurrentPortName= +CurrentBaudRate=9600 +CurrentTerminator=LF +CurrentSetupCommand=OUTP ON, (@1) +CurrentCleanupCommand=OUTP OFF, (@1) +CurrentReadCommand=MEAS:CURR? (@1) + +; COM 포트로 잡히는 장비 예시: +; VoltageConnection=Serial +; VoltagePortName=Auto +; VoltageBaudRate=115200 + +; LAN 장비 예시: +; VoltageConnection=Tcp +; VoltageHost=192.168.0.10 +; VoltagePort=5025 + +; E36233A 파워서플라이에서 CH1 전압까지 읽고 싶을 때 예시: +; VoltageReadCommand=MEAS:VOLT? CH1 diff --git a/installer/staging/Housing.deps.json b/installer/staging/Housing.deps.json new file mode 100644 index 0000000..5a7b0ab --- /dev/null +++ b/installer/staging/Housing.deps.json @@ -0,0 +1,1453 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": {}, + ".NETCoreApp,Version=v9.0/win-x64": { + "Housing/1.0.0": { + "dependencies": { + "Microsoft.Data.SqlClient": "6.1.3", + "System.IO.Ports": "9.0.10", + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "9.0.17", + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "9.0.17" + }, + "runtime": { + "Housing.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/9.0.17": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "14.0.0.0", + "fileVersion": "14.0.1726.26416" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.AppContext.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Buffers.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Collections.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Console.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Data.Common.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Drawing.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Formats.Tar.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Globalization.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.Pipelines.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Linq.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Http.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Security.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.InteropServices.JavaScript.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "8.1.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Text.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "9.0.1726.26416" + } + }, + "native": { + "Microsoft.DiaSymReader.Native.amd64.dll": { + "fileVersion": "14.42.34436.0" + }, + "System.IO.Compression.Native.dll": { + "fileVersion": "9.0.1726.26416" + }, + "clretwrc.dll": { + "fileVersion": "9.0.1726.26416" + }, + "clrgc.dll": { + "fileVersion": "9.0.1726.26416" + }, + "clrgcexp.dll": { + "fileVersion": "9.0.1726.26416" + }, + "clrjit.dll": { + "fileVersion": "9.0.1726.26416" + }, + "coreclr.dll": { + "fileVersion": "9.0.1726.26416" + }, + "createdump.exe": { + "fileVersion": "9.0.1726.26416" + }, + "hostfxr.dll": { + "fileVersion": "9.0.1726.26416" + }, + "hostpolicy.dll": { + "fileVersion": "9.0.1726.26416" + }, + "mscordaccore.dll": { + "fileVersion": "9.0.1726.26416" + }, + "mscordaccore_amd64_amd64_9.0.1726.26416.dll": { + "fileVersion": "9.0.1726.26416" + }, + "mscordbi.dll": { + "fileVersion": "9.0.1726.26416" + }, + "mscorrc.dll": { + "fileVersion": "9.0.1726.26416" + }, + "msquic.dll": { + "fileVersion": "2.4.18.0" + } + } + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/9.0.17": { + "runtime": { + "Accessibility.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26501" + }, + "DirectWriteForwarder.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "Microsoft.Win32.Registry.AccessControl.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "PresentationCore.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework-SystemCore.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework-SystemData.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework-SystemDrawing.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework-SystemXml.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework-SystemXmlLinq.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework.Aero.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework.Aero2.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework.AeroLite.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework.Classic.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework.Fluent.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework.Luna.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework.Royale.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationUI.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "ReachFramework.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "System.CodeDom.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.EventLog.Messages.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "0.0.0.0" + }, + "System.Diagnostics.EventLog.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.DirectoryServices.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Formats.Nrbf.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.Packaging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Printing.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "System.Resources.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Permissions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.AccessControl.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Windows.Controls.Ribbon.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "System.Windows.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Windows.Input.Manipulations.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "System.Windows.Presentation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "System.Xaml.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "UIAutomationClient.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "UIAutomationClientSideProviders.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "UIAutomationProvider.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "UIAutomationTypes.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "WindowsBase.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + } + }, + "native": { + "D3DCompiler_47_cor3.dll": { + "fileVersion": "10.0.26100.7705" + }, + "PenImc_cor3.dll": { + "fileVersion": "9.0.1726.26701" + }, + "PresentationNative_cor3.dll": { + "fileVersion": "9.0.26.22701" + }, + "vcruntime140_cor3.dll": { + "fileVersion": "14.44.35211.0" + }, + "wpfgfx_cor3.dll": { + "fileVersion": "9.0.1726.26701" + } + } + }, + "Azure.Core/1.47.1": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", + "System.ClientModel": "1.5.1", + "System.Memory.Data": "8.0.1" + }, + "runtime": { + "lib/net8.0/Azure.Core.dll": { + "assemblyVersion": "1.47.1.0", + "fileVersion": "1.4700.125.36505" + } + } + }, + "Azure.Identity/1.14.2": { + "dependencies": { + "Azure.Core": "1.47.1", + "Microsoft.Identity.Client": "4.73.1", + "Microsoft.Identity.Client.Extensions.Msal": "4.73.1" + }, + "runtime": { + "lib/net8.0/Azure.Identity.dll": { + "assemblyVersion": "1.14.2.0", + "fileVersion": "1.1400.225.36004" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Bcl.Cryptography/9.0.4": { + "runtime": { + "lib/net9.0/Microsoft.Bcl.Cryptography.dll": { + "assemblyVersion": "9.0.0.4", + "fileVersion": "9.0.425.16305" + } + } + }, + "Microsoft.Data.SqlClient/6.1.3": { + "dependencies": { + "Azure.Core": "1.47.1", + "Azure.Identity": "1.14.2", + "Microsoft.Bcl.Cryptography": "9.0.4", + "Microsoft.Data.SqlClient.SNI.runtime": "6.0.2", + "Microsoft.Extensions.Caching.Memory": "9.0.4", + "Microsoft.IdentityModel.JsonWebTokens": "7.7.1", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.7.1", + "Microsoft.SqlServer.Server": "1.0.0" + }, + "runtime": { + "runtimes/win/lib/net9.0/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.13.25316.3" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.Data.SqlClient.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.Data.SqlClient.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.Data.SqlClient.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.Data.SqlClient.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.Data.SqlClient.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.Data.SqlClient.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.Data.SqlClient.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.Data.SqlClient.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/6.0.2": { + "native": { + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "fileVersion": "6.2.0.0" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.4": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.4" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.425.16305" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.4": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.4", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4", + "Microsoft.Extensions.Logging.Abstractions": "9.0.4", + "Microsoft.Extensions.Options": "9.0.4", + "Microsoft.Extensions.Primitives": "9.0.4" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.425.16305" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.4": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.425.16305" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.4": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.425.16305" + } + } + }, + "Microsoft.Extensions.Options/9.0.4": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4", + "Microsoft.Extensions.Primitives": "9.0.4" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.425.16305" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.4": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.425.16305" + } + } + }, + "Microsoft.Identity.Client/4.73.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "7.7.1" + }, + "runtime": { + "lib/net8.0/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.73.1.0", + "fileVersion": "4.73.1.0" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.73.1": { + "dependencies": { + "Microsoft.Identity.Client": "4.73.1" + }, + "runtime": { + "lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "assemblyVersion": "4.73.1.0", + "fileVersion": "4.73.1.0" + } + } + }, + "Microsoft.IdentityModel.Abstractions/7.7.1": { + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "7.7.1.0", + "fileVersion": "7.7.1.50719" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/7.7.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "7.7.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "7.7.1.0", + "fileVersion": "7.7.1.50719" + } + } + }, + "Microsoft.IdentityModel.Logging/7.7.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "7.7.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "7.7.1.0", + "fileVersion": "7.7.1.50719" + } + } + }, + "Microsoft.IdentityModel.Protocols/7.7.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "7.7.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "7.7.1.0", + "fileVersion": "7.7.1.50719" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.7.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "7.7.1", + "System.IdentityModel.Tokens.Jwt": "7.7.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "7.7.1.0", + "fileVersion": "7.7.1.50719" + } + } + }, + "Microsoft.IdentityModel.Tokens/7.7.1": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "7.7.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "7.7.1.0", + "fileVersion": "7.7.1.50719" + } + } + }, + "Microsoft.SqlServer.Server/1.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "System.ClientModel/1.5.1": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.4", + "System.Memory.Data": "8.0.1" + }, + "runtime": { + "lib/net8.0/System.ClientModel.dll": { + "assemblyVersion": "1.5.1.0", + "fileVersion": "1.500.125.36405" + } + } + }, + "System.IdentityModel.Tokens.Jwt/7.7.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "7.7.1", + "Microsoft.IdentityModel.Tokens": "7.7.1" + }, + "runtime": { + "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "7.7.1.0", + "fileVersion": "7.7.1.50719" + } + } + }, + "System.IO.Ports/9.0.10": { + "runtime": { + "runtimes/win/lib/net9.0/System.IO.Ports.dll": { + "assemblyVersion": "9.0.0.10", + "fileVersion": "9.0.1025.47515" + } + } + }, + "System.Memory.Data/8.0.1": { + "runtime": { + "lib/net8.0/System.Memory.Data.dll": { + "assemblyVersion": "8.0.0.1", + "fileVersion": "8.0.1024.46610" + } + } + } + } + }, + "libraries": { + "Housing/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/9.0.17": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/9.0.17": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "Azure.Core/1.47.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oPcncSsDHuxB8SC522z47xbp2+ttkcKv2YZ90KXhRKN0YQd2+7l1UURT9EBzUNEXtkLZUOAB5xbByMTrYRh3yA==", + "path": "azure.core/1.47.1", + "hashPath": "azure.core.1.47.1.nupkg.sha512" + }, + "Azure.Identity/1.14.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhNMwOTwT+I2wIcJKSdP0ADyB2aK+JaYWZxO8LSRDm5w77LFr0ykR9xmt2ZV5T1gaI7xU6iNFIh/yW1dAlpddQ==", + "path": "azure.identity/1.14.2", + "hashPath": "azure.identity.1.14.2.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==", + "path": "microsoft.bcl.asyncinterfaces/8.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.Cryptography/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YgZYAWzyNuPVtPq6WNm0bqOWNjYaWgl5mBWTGZyNoXitYBUYSp6iUB9AwK0V1mo793qRJUXz2t6UZrWITZSvuQ==", + "path": "microsoft.bcl.cryptography/9.0.4", + "hashPath": "microsoft.bcl.cryptography.9.0.4.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/6.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ys/z8Tx8074CDU20EilNvBRJuJdwKSthpHkzUpt3JghnjB6GjbZusoOcCtNbhPCCWsEJqN8bxaT7HnS3UZuUDQ==", + "path": "microsoft.data.sqlclient/6.1.3", + "hashPath": "microsoft.data.sqlclient.6.1.3.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/6.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f+pRODTWX7Y67jXO3T5S2dIPZ9qMJNySjlZT/TKmWVNWe19N8jcWmHaqHnnchaq3gxEKv1SWVY5EFzOD06l41w==", + "path": "microsoft.data.sqlclient.sni.runtime/6.0.2", + "hashPath": "microsoft.data.sqlclient.sni.runtime.6.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-imcZ5BGhBw5mNsWLepBbqqumWaFe0GtvyCvne2/2wsDIBRa2+Lhx4cU/pKt/4BwOizzUEOls2k1eOJQXHGMalg==", + "path": "microsoft.extensions.caching.abstractions/9.0.4", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.4.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G5rEq1Qez5VJDTEyRsRUnewAspKjaY57VGsdZ8g8Ja6sXXzoiI3PpTd1t43HjHqNWD5A06MQveb2lscn+2CU+w==", + "path": "microsoft.extensions.caching.memory/9.0.4", + "hashPath": "microsoft.extensions.caching.memory.9.0.4.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UI0TQPVkS78bFdjkTodmkH0Fe8lXv9LnhGFKgKrsgUJ5a5FVdFRcgjIkBVLbGgdRhxWirxH/8IXUtEyYJx6GQg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.4", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.4.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0MXlimU4Dud6t+iNi5NEz3dO2w1HXdhoOLaYFuLPCjAsvlPQGwOT6V2KZRMLEhCAm/stSZt1AUv0XmDdkjvtbw==", + "path": "microsoft.extensions.logging.abstractions/9.0.4", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.4.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fiFI2+58kicqVZyt/6obqoFwHiab7LC4FkQ3mmiBJ28Yy4fAvy2+v9MRnSvvlOO8chTOjKsdafFl/K9veCPo5g==", + "path": "microsoft.extensions.options/9.0.4", + "hashPath": "microsoft.extensions.options.9.0.4.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SPFyMjyku1nqTFFJ928JAMd0QnRe4xjE7KeKnZMWXf3xk+6e0WiOZAluYtLdbJUXtsl2cCRSi8cBquJ408k8RA==", + "path": "microsoft.extensions.primitives/9.0.4", + "hashPath": "microsoft.extensions.primitives.9.0.4.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.73.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NnDLS8QwYqO5ZZecL2oioi1LUqjh5Ewk4bMLzbgiXJbQmZhDLtKwLxL3DpGMlQAJ2G4KgEnvGPKa+OOgffeJbw==", + "path": "microsoft.identity.client/4.73.1", + "hashPath": "microsoft.identity.client.4.73.1.nupkg.sha512" + }, + "Microsoft.Identity.Client.Extensions.Msal/4.73.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xDztAiV2F0wI0W8FLKv5cbaBefyLD6JVaAsvgSN7bjWNCzGYzHbcOEIP5s4TJXUpQzMfUyBsFl1mC6Zmgpz0PQ==", + "path": "microsoft.identity.client.extensions.msal/4.73.1", + "hashPath": "microsoft.identity.client.extensions.msal.4.73.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/7.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S7sHg6gLg7oFqNGLwN1qSbJDI+QcRRj8SuJ1jHyCmKSipnF6ZQL+tFV2NzVfGj/xmGT9TykQdQiBN+p5Idl4TA==", + "path": "microsoft.identitymodel.abstractions/7.7.1", + "hashPath": "microsoft.identitymodel.abstractions.7.7.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/7.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Izi75UCUssvo8LPx3OVnEeZay58qaFicrtSnbtUt7q8qQi0gy46gh4V8VUTkMVMKXV6VMyjBVmeNNgeCUJuIw==", + "path": "microsoft.identitymodel.jsonwebtokens/7.7.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.7.7.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/7.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BZNgSq/o8gsKExdYoBKPR65fdsxW0cTF8PsdqB8y011AGUJJW300S/ZIsEUD0+sOmGc003Gwv3FYbjrVjvsLNQ==", + "path": "microsoft.identitymodel.logging/7.7.1", + "hashPath": "microsoft.identitymodel.logging.7.7.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/7.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h+fHHBGokepmCX+QZXJk4Ij8OApCb2n2ktoDkNX5CXteXsOxTHMNgjPGpAwdJMFvAL7TtGarUnk3o97NmBq2QQ==", + "path": "microsoft.identitymodel.protocols/7.7.1", + "hashPath": "microsoft.identitymodel.protocols.7.7.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yT2Hdj8LpPbcT9C9KlLVxXl09C8zjFaVSaApdOwuecMuoV4s6Sof/mnTDz/+F/lILPIBvrWugR9CC7iRVZgbfQ==", + "path": "microsoft.identitymodel.protocols.openidconnect/7.7.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.7.7.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/7.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fQ0VVCba75lknUHGldi3iTKAYUQqbzp1Un8+d9cm9nON0Gs8NAkXddNg8iaUB0qi/ybtAmNWizTR4avdkCJ9pQ==", + "path": "microsoft.identitymodel.tokens/7.7.1", + "hashPath": "microsoft.identitymodel.tokens.7.7.1.nupkg.sha512" + }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "path": "microsoft.sqlserver.server/1.0.0", + "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" + }, + "System.ClientModel/1.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k2jKSO0X45IqhVOT9iQB4xralNN9foRQsRvXBTyRpAVxyzCJlG895T9qYrQWbcJ6OQXxOouJQ37x5nZH5XKK+A==", + "path": "system.clientmodel/1.5.1", + "hashPath": "system.clientmodel.1.5.1.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/7.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rQkO1YbAjLwnDJSMpRhRtrc6XwIcEOcUvoEcge+evurpzSZM3UNK+MZfD3sKyTlYsvknZ6eJjSBfnmXqwOsT9Q==", + "path": "system.identitymodel.tokens.jwt/7.7.1", + "hashPath": "system.identitymodel.tokens.jwt.7.7.1.nupkg.sha512" + }, + "System.IO.Ports/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jMvwu+NOk/+vlOzTp9vpxIeGq+yRA+3EbkmpLMs37AAy9cI8YlY/ntTHL00w26Tvu6cIkx0/TdjmeHm0l99Nqw==", + "path": "system.io.ports/9.0.10", + "hashPath": "system.io.ports.9.0.10.nupkg.sha512" + }, + "System.Memory.Data/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BVYuec3jV23EMRDeR7Dr1/qhx7369dZzJ9IWy2xylvb4YfXsrUxspWc4UWYid/tj4zZK58uGZqn2WQiaDMhmAg==", + "path": "system.memory.data/8.0.1", + "hashPath": "system.memory.data.8.0.1.nupkg.sha512" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/installer/staging/Housing.dll b/installer/staging/Housing.dll new file mode 100644 index 0000000..7d7a74a Binary files /dev/null and b/installer/staging/Housing.dll differ diff --git a/installer/staging/Housing.exe b/installer/staging/Housing.exe new file mode 100644 index 0000000..fe6c523 Binary files /dev/null and b/installer/staging/Housing.exe differ diff --git a/installer/staging/Housing.pdb b/installer/staging/Housing.pdb new file mode 100644 index 0000000..f0d1e40 Binary files /dev/null and b/installer/staging/Housing.pdb differ diff --git a/installer/staging/Housing.runtimeconfig.json b/installer/staging/Housing.runtimeconfig.json new file mode 100644 index 0000000..7023d2c --- /dev/null +++ b/installer/staging/Housing.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "includedFrameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.17" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "9.0.17" + } + ], + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false, + "CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false + } + } +} \ No newline at end of file diff --git a/installer/staging/Housing_voltage_current_icon.ico b/installer/staging/Housing_voltage_current_icon.ico new file mode 100644 index 0000000..edc4fb3 Binary files /dev/null and b/installer/staging/Housing_voltage_current_icon.ico differ diff --git a/installer/staging/InspectionSettings.ini b/installer/staging/InspectionSettings.ini new file mode 100644 index 0000000..b781388 --- /dev/null +++ b/installer/staging/InspectionSettings.ini @@ -0,0 +1,5 @@ +[Judgement] +VMin=0.00 +VMax=9.99 +AMin=0.00 +AMax=9.99 diff --git a/installer/staging/Microsoft.Bcl.AsyncInterfaces.dll b/installer/staging/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..421e812 Binary files /dev/null and b/installer/staging/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/installer/staging/Microsoft.Bcl.Cryptography.dll b/installer/staging/Microsoft.Bcl.Cryptography.dll new file mode 100644 index 0000000..e0a506a Binary files /dev/null and b/installer/staging/Microsoft.Bcl.Cryptography.dll differ diff --git a/installer/staging/Microsoft.CSharp.dll b/installer/staging/Microsoft.CSharp.dll new file mode 100644 index 0000000..f364bdf Binary files /dev/null and b/installer/staging/Microsoft.CSharp.dll differ diff --git a/installer/staging/Microsoft.Data.SqlClient.SNI.dll b/installer/staging/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..a0083b1 Binary files /dev/null and b/installer/staging/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/installer/staging/Microsoft.Data.SqlClient.dll b/installer/staging/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..00af6a9 Binary files /dev/null and b/installer/staging/Microsoft.Data.SqlClient.dll differ diff --git a/installer/staging/Microsoft.DiaSymReader.Native.amd64.dll b/installer/staging/Microsoft.DiaSymReader.Native.amd64.dll new file mode 100644 index 0000000..92b355b Binary files /dev/null and b/installer/staging/Microsoft.DiaSymReader.Native.amd64.dll differ diff --git a/installer/staging/Microsoft.Extensions.Caching.Abstractions.dll b/installer/staging/Microsoft.Extensions.Caching.Abstractions.dll new file mode 100644 index 0000000..bcc2d65 Binary files /dev/null and b/installer/staging/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/installer/staging/Microsoft.Extensions.Caching.Memory.dll b/installer/staging/Microsoft.Extensions.Caching.Memory.dll new file mode 100644 index 0000000..5892a26 Binary files /dev/null and b/installer/staging/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/installer/staging/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/installer/staging/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..0dbff05 Binary files /dev/null and b/installer/staging/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/installer/staging/Microsoft.Extensions.Logging.Abstractions.dll b/installer/staging/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..bef7508 Binary files /dev/null and b/installer/staging/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/installer/staging/Microsoft.Extensions.Options.dll b/installer/staging/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..30da524 Binary files /dev/null and b/installer/staging/Microsoft.Extensions.Options.dll differ diff --git a/installer/staging/Microsoft.Extensions.Primitives.dll b/installer/staging/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..ebf6eee Binary files /dev/null and b/installer/staging/Microsoft.Extensions.Primitives.dll differ diff --git a/installer/staging/Microsoft.Identity.Client.Extensions.Msal.dll b/installer/staging/Microsoft.Identity.Client.Extensions.Msal.dll new file mode 100644 index 0000000..15201c7 Binary files /dev/null and b/installer/staging/Microsoft.Identity.Client.Extensions.Msal.dll differ diff --git a/installer/staging/Microsoft.Identity.Client.dll b/installer/staging/Microsoft.Identity.Client.dll new file mode 100644 index 0000000..aa7367f Binary files /dev/null and b/installer/staging/Microsoft.Identity.Client.dll differ diff --git a/installer/staging/Microsoft.IdentityModel.Abstractions.dll b/installer/staging/Microsoft.IdentityModel.Abstractions.dll new file mode 100644 index 0000000..eaeb3ad Binary files /dev/null and b/installer/staging/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/installer/staging/Microsoft.IdentityModel.JsonWebTokens.dll b/installer/staging/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 0000000..bdeca82 Binary files /dev/null and b/installer/staging/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/installer/staging/Microsoft.IdentityModel.Logging.dll b/installer/staging/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..ccfe9ff Binary files /dev/null and b/installer/staging/Microsoft.IdentityModel.Logging.dll differ diff --git a/installer/staging/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/installer/staging/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 0000000..9c70235 Binary files /dev/null and b/installer/staging/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/installer/staging/Microsoft.IdentityModel.Protocols.dll b/installer/staging/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 0000000..01432af Binary files /dev/null and b/installer/staging/Microsoft.IdentityModel.Protocols.dll differ diff --git a/installer/staging/Microsoft.IdentityModel.Tokens.dll b/installer/staging/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..6fbb9ee Binary files /dev/null and b/installer/staging/Microsoft.IdentityModel.Tokens.dll differ diff --git a/installer/staging/Microsoft.SqlServer.Server.dll b/installer/staging/Microsoft.SqlServer.Server.dll new file mode 100644 index 0000000..ddeaa86 Binary files /dev/null and b/installer/staging/Microsoft.SqlServer.Server.dll differ diff --git a/installer/staging/Microsoft.VisualBasic.Core.dll b/installer/staging/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..8af701a Binary files /dev/null and b/installer/staging/Microsoft.VisualBasic.Core.dll differ diff --git a/installer/staging/Microsoft.VisualBasic.dll b/installer/staging/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..d2286b6 Binary files /dev/null and b/installer/staging/Microsoft.VisualBasic.dll differ diff --git a/installer/staging/Microsoft.Win32.Primitives.dll b/installer/staging/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..f5d557f Binary files /dev/null and b/installer/staging/Microsoft.Win32.Primitives.dll differ diff --git a/installer/staging/Microsoft.Win32.Registry.AccessControl.dll b/installer/staging/Microsoft.Win32.Registry.AccessControl.dll new file mode 100644 index 0000000..81d0c06 Binary files /dev/null and b/installer/staging/Microsoft.Win32.Registry.AccessControl.dll differ diff --git a/installer/staging/Microsoft.Win32.Registry.dll b/installer/staging/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..3277ee1 Binary files /dev/null and b/installer/staging/Microsoft.Win32.Registry.dll differ diff --git a/installer/staging/Microsoft.Win32.SystemEvents.dll b/installer/staging/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..748c6a2 Binary files /dev/null and b/installer/staging/Microsoft.Win32.SystemEvents.dll differ diff --git a/installer/staging/PenImc_cor3.dll b/installer/staging/PenImc_cor3.dll new file mode 100644 index 0000000..cad11e9 Binary files /dev/null and b/installer/staging/PenImc_cor3.dll differ diff --git a/installer/staging/PresentationCore.dll b/installer/staging/PresentationCore.dll new file mode 100644 index 0000000..6c66e6a Binary files /dev/null and b/installer/staging/PresentationCore.dll differ diff --git a/installer/staging/PresentationFramework-SystemCore.dll b/installer/staging/PresentationFramework-SystemCore.dll new file mode 100644 index 0000000..dfb3e26 Binary files /dev/null and b/installer/staging/PresentationFramework-SystemCore.dll differ diff --git a/installer/staging/PresentationFramework-SystemData.dll b/installer/staging/PresentationFramework-SystemData.dll new file mode 100644 index 0000000..86d217f Binary files /dev/null and b/installer/staging/PresentationFramework-SystemData.dll differ diff --git a/installer/staging/PresentationFramework-SystemDrawing.dll b/installer/staging/PresentationFramework-SystemDrawing.dll new file mode 100644 index 0000000..f1a6504 Binary files /dev/null and b/installer/staging/PresentationFramework-SystemDrawing.dll differ diff --git a/installer/staging/PresentationFramework-SystemXml.dll b/installer/staging/PresentationFramework-SystemXml.dll new file mode 100644 index 0000000..adf29fa Binary files /dev/null and b/installer/staging/PresentationFramework-SystemXml.dll differ diff --git a/installer/staging/PresentationFramework-SystemXmlLinq.dll b/installer/staging/PresentationFramework-SystemXmlLinq.dll new file mode 100644 index 0000000..10ab576 Binary files /dev/null and b/installer/staging/PresentationFramework-SystemXmlLinq.dll differ diff --git a/installer/staging/PresentationFramework.Aero.dll b/installer/staging/PresentationFramework.Aero.dll new file mode 100644 index 0000000..781919a Binary files /dev/null and b/installer/staging/PresentationFramework.Aero.dll differ diff --git a/installer/staging/PresentationFramework.Aero2.dll b/installer/staging/PresentationFramework.Aero2.dll new file mode 100644 index 0000000..db09794 Binary files /dev/null and b/installer/staging/PresentationFramework.Aero2.dll differ diff --git a/installer/staging/PresentationFramework.AeroLite.dll b/installer/staging/PresentationFramework.AeroLite.dll new file mode 100644 index 0000000..2a27d38 Binary files /dev/null and b/installer/staging/PresentationFramework.AeroLite.dll differ diff --git a/installer/staging/PresentationFramework.Classic.dll b/installer/staging/PresentationFramework.Classic.dll new file mode 100644 index 0000000..77ebeed Binary files /dev/null and b/installer/staging/PresentationFramework.Classic.dll differ diff --git a/installer/staging/PresentationFramework.Fluent.dll b/installer/staging/PresentationFramework.Fluent.dll new file mode 100644 index 0000000..55f962f Binary files /dev/null and b/installer/staging/PresentationFramework.Fluent.dll differ diff --git a/installer/staging/PresentationFramework.Luna.dll b/installer/staging/PresentationFramework.Luna.dll new file mode 100644 index 0000000..3ab2ca7 Binary files /dev/null and b/installer/staging/PresentationFramework.Luna.dll differ diff --git a/installer/staging/PresentationFramework.Royale.dll b/installer/staging/PresentationFramework.Royale.dll new file mode 100644 index 0000000..4f50320 Binary files /dev/null and b/installer/staging/PresentationFramework.Royale.dll differ diff --git a/installer/staging/PresentationFramework.dll b/installer/staging/PresentationFramework.dll new file mode 100644 index 0000000..6fcc56c Binary files /dev/null and b/installer/staging/PresentationFramework.dll differ diff --git a/installer/staging/PresentationNative_cor3.dll b/installer/staging/PresentationNative_cor3.dll new file mode 100644 index 0000000..73524ab Binary files /dev/null and b/installer/staging/PresentationNative_cor3.dll differ diff --git a/installer/staging/PresentationUI.dll b/installer/staging/PresentationUI.dll new file mode 100644 index 0000000..d5494d6 Binary files /dev/null and b/installer/staging/PresentationUI.dll differ diff --git a/installer/staging/ReachFramework.dll b/installer/staging/ReachFramework.dll new file mode 100644 index 0000000..cafc375 Binary files /dev/null and b/installer/staging/ReachFramework.dll differ diff --git a/installer/staging/System.AppContext.dll b/installer/staging/System.AppContext.dll new file mode 100644 index 0000000..2619837 Binary files /dev/null and b/installer/staging/System.AppContext.dll differ diff --git a/installer/staging/System.Buffers.dll b/installer/staging/System.Buffers.dll new file mode 100644 index 0000000..b5576f8 Binary files /dev/null and b/installer/staging/System.Buffers.dll differ diff --git a/installer/staging/System.ClientModel.dll b/installer/staging/System.ClientModel.dll new file mode 100644 index 0000000..0caead2 Binary files /dev/null and b/installer/staging/System.ClientModel.dll differ diff --git a/installer/staging/System.CodeDom.dll b/installer/staging/System.CodeDom.dll new file mode 100644 index 0000000..19a9c0a Binary files /dev/null and b/installer/staging/System.CodeDom.dll differ diff --git a/installer/staging/System.Collections.Concurrent.dll b/installer/staging/System.Collections.Concurrent.dll new file mode 100644 index 0000000..5a51692 Binary files /dev/null and b/installer/staging/System.Collections.Concurrent.dll differ diff --git a/installer/staging/System.Collections.Immutable.dll b/installer/staging/System.Collections.Immutable.dll new file mode 100644 index 0000000..21a74c5 Binary files /dev/null and b/installer/staging/System.Collections.Immutable.dll differ diff --git a/installer/staging/System.Collections.NonGeneric.dll b/installer/staging/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..53ee290 Binary files /dev/null and b/installer/staging/System.Collections.NonGeneric.dll differ diff --git a/installer/staging/System.Collections.Specialized.dll b/installer/staging/System.Collections.Specialized.dll new file mode 100644 index 0000000..cb440c1 Binary files /dev/null and b/installer/staging/System.Collections.Specialized.dll differ diff --git a/installer/staging/System.Collections.dll b/installer/staging/System.Collections.dll new file mode 100644 index 0000000..720b16e Binary files /dev/null and b/installer/staging/System.Collections.dll differ diff --git a/installer/staging/System.ComponentModel.Annotations.dll b/installer/staging/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..4b93dbe Binary files /dev/null and b/installer/staging/System.ComponentModel.Annotations.dll differ diff --git a/installer/staging/System.ComponentModel.DataAnnotations.dll b/installer/staging/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..399ceeb Binary files /dev/null and b/installer/staging/System.ComponentModel.DataAnnotations.dll differ diff --git a/installer/staging/System.ComponentModel.EventBasedAsync.dll b/installer/staging/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..fa23688 Binary files /dev/null and b/installer/staging/System.ComponentModel.EventBasedAsync.dll differ diff --git a/installer/staging/System.ComponentModel.Primitives.dll b/installer/staging/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..8cea50a Binary files /dev/null and b/installer/staging/System.ComponentModel.Primitives.dll differ diff --git a/installer/staging/System.ComponentModel.TypeConverter.dll b/installer/staging/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..45eebb9 Binary files /dev/null and b/installer/staging/System.ComponentModel.TypeConverter.dll differ diff --git a/installer/staging/System.ComponentModel.dll b/installer/staging/System.ComponentModel.dll new file mode 100644 index 0000000..c61344c Binary files /dev/null and b/installer/staging/System.ComponentModel.dll differ diff --git a/installer/staging/System.Configuration.ConfigurationManager.dll b/installer/staging/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..4c8f97f Binary files /dev/null and b/installer/staging/System.Configuration.ConfigurationManager.dll differ diff --git a/installer/staging/System.Configuration.dll b/installer/staging/System.Configuration.dll new file mode 100644 index 0000000..956d719 Binary files /dev/null and b/installer/staging/System.Configuration.dll differ diff --git a/installer/staging/System.Console.dll b/installer/staging/System.Console.dll new file mode 100644 index 0000000..ba0eb67 Binary files /dev/null and b/installer/staging/System.Console.dll differ diff --git a/installer/staging/System.Core.dll b/installer/staging/System.Core.dll new file mode 100644 index 0000000..9be45f3 Binary files /dev/null and b/installer/staging/System.Core.dll differ diff --git a/installer/staging/System.Data.Common.dll b/installer/staging/System.Data.Common.dll new file mode 100644 index 0000000..54cd27a Binary files /dev/null and b/installer/staging/System.Data.Common.dll differ diff --git a/installer/staging/System.Data.DataSetExtensions.dll b/installer/staging/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..74abe99 Binary files /dev/null and b/installer/staging/System.Data.DataSetExtensions.dll differ diff --git a/installer/staging/System.Data.dll b/installer/staging/System.Data.dll new file mode 100644 index 0000000..198c16c Binary files /dev/null and b/installer/staging/System.Data.dll differ diff --git a/installer/staging/System.Diagnostics.Contracts.dll b/installer/staging/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..a0c058b Binary files /dev/null and b/installer/staging/System.Diagnostics.Contracts.dll differ diff --git a/installer/staging/System.Diagnostics.Debug.dll b/installer/staging/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..a258a24 Binary files /dev/null and b/installer/staging/System.Diagnostics.Debug.dll differ diff --git a/installer/staging/System.Diagnostics.DiagnosticSource.dll b/installer/staging/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..136e902 Binary files /dev/null and b/installer/staging/System.Diagnostics.DiagnosticSource.dll differ diff --git a/installer/staging/System.Diagnostics.EventLog.Messages.dll b/installer/staging/System.Diagnostics.EventLog.Messages.dll new file mode 100644 index 0000000..de7c7af Binary files /dev/null and b/installer/staging/System.Diagnostics.EventLog.Messages.dll differ diff --git a/installer/staging/System.Diagnostics.EventLog.dll b/installer/staging/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..d820328 Binary files /dev/null and b/installer/staging/System.Diagnostics.EventLog.dll differ diff --git a/installer/staging/System.Diagnostics.FileVersionInfo.dll b/installer/staging/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..5e59e5b Binary files /dev/null and b/installer/staging/System.Diagnostics.FileVersionInfo.dll differ diff --git a/installer/staging/System.Diagnostics.PerformanceCounter.dll b/installer/staging/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..44bff46 Binary files /dev/null and b/installer/staging/System.Diagnostics.PerformanceCounter.dll differ diff --git a/installer/staging/System.Diagnostics.Process.dll b/installer/staging/System.Diagnostics.Process.dll new file mode 100644 index 0000000..32fe9ff Binary files /dev/null and b/installer/staging/System.Diagnostics.Process.dll differ diff --git a/installer/staging/System.Diagnostics.StackTrace.dll b/installer/staging/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..a221a64 Binary files /dev/null and b/installer/staging/System.Diagnostics.StackTrace.dll differ diff --git a/installer/staging/System.Diagnostics.TextWriterTraceListener.dll b/installer/staging/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..bc3d891 Binary files /dev/null and b/installer/staging/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/installer/staging/System.Diagnostics.Tools.dll b/installer/staging/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..bbfc53b Binary files /dev/null and b/installer/staging/System.Diagnostics.Tools.dll differ diff --git a/installer/staging/System.Diagnostics.TraceSource.dll b/installer/staging/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..310dd38 Binary files /dev/null and b/installer/staging/System.Diagnostics.TraceSource.dll differ diff --git a/installer/staging/System.Diagnostics.Tracing.dll b/installer/staging/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..3a75eb3 Binary files /dev/null and b/installer/staging/System.Diagnostics.Tracing.dll differ diff --git a/installer/staging/System.DirectoryServices.dll b/installer/staging/System.DirectoryServices.dll new file mode 100644 index 0000000..dcaddf1 Binary files /dev/null and b/installer/staging/System.DirectoryServices.dll differ diff --git a/installer/staging/System.Drawing.Primitives.dll b/installer/staging/System.Drawing.Primitives.dll new file mode 100644 index 0000000..a973a80 Binary files /dev/null and b/installer/staging/System.Drawing.Primitives.dll differ diff --git a/installer/staging/System.Drawing.dll b/installer/staging/System.Drawing.dll new file mode 100644 index 0000000..508ca84 Binary files /dev/null and b/installer/staging/System.Drawing.dll differ diff --git a/installer/staging/System.Dynamic.Runtime.dll b/installer/staging/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..40258a8 Binary files /dev/null and b/installer/staging/System.Dynamic.Runtime.dll differ diff --git a/installer/staging/System.Formats.Asn1.dll b/installer/staging/System.Formats.Asn1.dll new file mode 100644 index 0000000..99047ae Binary files /dev/null and b/installer/staging/System.Formats.Asn1.dll differ diff --git a/installer/staging/System.Formats.Nrbf.dll b/installer/staging/System.Formats.Nrbf.dll new file mode 100644 index 0000000..263e9f8 Binary files /dev/null and b/installer/staging/System.Formats.Nrbf.dll differ diff --git a/installer/staging/System.Formats.Tar.dll b/installer/staging/System.Formats.Tar.dll new file mode 100644 index 0000000..7d22d6d Binary files /dev/null and b/installer/staging/System.Formats.Tar.dll differ diff --git a/installer/staging/System.Globalization.Calendars.dll b/installer/staging/System.Globalization.Calendars.dll new file mode 100644 index 0000000..53c8291 Binary files /dev/null and b/installer/staging/System.Globalization.Calendars.dll differ diff --git a/installer/staging/System.Globalization.Extensions.dll b/installer/staging/System.Globalization.Extensions.dll new file mode 100644 index 0000000..100c55e Binary files /dev/null and b/installer/staging/System.Globalization.Extensions.dll differ diff --git a/installer/staging/System.Globalization.dll b/installer/staging/System.Globalization.dll new file mode 100644 index 0000000..d4c7893 Binary files /dev/null and b/installer/staging/System.Globalization.dll differ diff --git a/installer/staging/System.IO.Compression.Brotli.dll b/installer/staging/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..f9742b5 Binary files /dev/null and b/installer/staging/System.IO.Compression.Brotli.dll differ diff --git a/installer/staging/System.IO.Compression.FileSystem.dll b/installer/staging/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..6e884ca Binary files /dev/null and b/installer/staging/System.IO.Compression.FileSystem.dll differ diff --git a/installer/staging/System.IO.Compression.Native.dll b/installer/staging/System.IO.Compression.Native.dll new file mode 100644 index 0000000..a635852 Binary files /dev/null and b/installer/staging/System.IO.Compression.Native.dll differ diff --git a/installer/staging/System.IO.Compression.ZipFile.dll b/installer/staging/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..149dd2e Binary files /dev/null and b/installer/staging/System.IO.Compression.ZipFile.dll differ diff --git a/installer/staging/System.IO.Compression.dll b/installer/staging/System.IO.Compression.dll new file mode 100644 index 0000000..519c34f Binary files /dev/null and b/installer/staging/System.IO.Compression.dll differ diff --git a/installer/staging/System.IO.FileSystem.AccessControl.dll b/installer/staging/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..9d0c83b Binary files /dev/null and b/installer/staging/System.IO.FileSystem.AccessControl.dll differ diff --git a/installer/staging/System.IO.FileSystem.DriveInfo.dll b/installer/staging/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..473ea28 Binary files /dev/null and b/installer/staging/System.IO.FileSystem.DriveInfo.dll differ diff --git a/installer/staging/System.IO.FileSystem.Primitives.dll b/installer/staging/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..9b60e61 Binary files /dev/null and b/installer/staging/System.IO.FileSystem.Primitives.dll differ diff --git a/installer/staging/System.IO.FileSystem.Watcher.dll b/installer/staging/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..a00723a Binary files /dev/null and b/installer/staging/System.IO.FileSystem.Watcher.dll differ diff --git a/installer/staging/System.IO.FileSystem.dll b/installer/staging/System.IO.FileSystem.dll new file mode 100644 index 0000000..333ae1c Binary files /dev/null and b/installer/staging/System.IO.FileSystem.dll differ diff --git a/installer/staging/System.IO.IsolatedStorage.dll b/installer/staging/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..846b4f7 Binary files /dev/null and b/installer/staging/System.IO.IsolatedStorage.dll differ diff --git a/installer/staging/System.IO.MemoryMappedFiles.dll b/installer/staging/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..06915ab Binary files /dev/null and b/installer/staging/System.IO.MemoryMappedFiles.dll differ diff --git a/installer/staging/System.IO.Packaging.dll b/installer/staging/System.IO.Packaging.dll new file mode 100644 index 0000000..a46169a Binary files /dev/null and b/installer/staging/System.IO.Packaging.dll differ diff --git a/installer/staging/System.IO.Pipelines.dll b/installer/staging/System.IO.Pipelines.dll new file mode 100644 index 0000000..efec837 Binary files /dev/null and b/installer/staging/System.IO.Pipelines.dll differ diff --git a/installer/staging/System.IO.Pipes.AccessControl.dll b/installer/staging/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..c5a03ec Binary files /dev/null and b/installer/staging/System.IO.Pipes.AccessControl.dll differ diff --git a/installer/staging/System.IO.Pipes.dll b/installer/staging/System.IO.Pipes.dll new file mode 100644 index 0000000..99dd97d Binary files /dev/null and b/installer/staging/System.IO.Pipes.dll differ diff --git a/installer/staging/System.IO.Ports.dll b/installer/staging/System.IO.Ports.dll new file mode 100644 index 0000000..ba7dacd Binary files /dev/null and b/installer/staging/System.IO.Ports.dll differ diff --git a/installer/staging/System.IO.UnmanagedMemoryStream.dll b/installer/staging/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..37c681a Binary files /dev/null and b/installer/staging/System.IO.UnmanagedMemoryStream.dll differ diff --git a/installer/staging/System.IO.dll b/installer/staging/System.IO.dll new file mode 100644 index 0000000..55859fa Binary files /dev/null and b/installer/staging/System.IO.dll differ diff --git a/installer/staging/System.IdentityModel.Tokens.Jwt.dll b/installer/staging/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 0000000..c2d8ecb Binary files /dev/null and b/installer/staging/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/installer/staging/System.Linq.Expressions.dll b/installer/staging/System.Linq.Expressions.dll new file mode 100644 index 0000000..13eb386 Binary files /dev/null and b/installer/staging/System.Linq.Expressions.dll differ diff --git a/installer/staging/System.Linq.Parallel.dll b/installer/staging/System.Linq.Parallel.dll new file mode 100644 index 0000000..e1150ef Binary files /dev/null and b/installer/staging/System.Linq.Parallel.dll differ diff --git a/installer/staging/System.Linq.Queryable.dll b/installer/staging/System.Linq.Queryable.dll new file mode 100644 index 0000000..f11b7ce Binary files /dev/null and b/installer/staging/System.Linq.Queryable.dll differ diff --git a/installer/staging/System.Linq.dll b/installer/staging/System.Linq.dll new file mode 100644 index 0000000..abe701e Binary files /dev/null and b/installer/staging/System.Linq.dll differ diff --git a/installer/staging/System.Memory.Data.dll b/installer/staging/System.Memory.Data.dll new file mode 100644 index 0000000..9282c37 Binary files /dev/null and b/installer/staging/System.Memory.Data.dll differ diff --git a/installer/staging/System.Memory.dll b/installer/staging/System.Memory.dll new file mode 100644 index 0000000..82b867e Binary files /dev/null and b/installer/staging/System.Memory.dll differ diff --git a/installer/staging/System.Net.Http.Json.dll b/installer/staging/System.Net.Http.Json.dll new file mode 100644 index 0000000..2407078 Binary files /dev/null and b/installer/staging/System.Net.Http.Json.dll differ diff --git a/installer/staging/System.Net.Http.dll b/installer/staging/System.Net.Http.dll new file mode 100644 index 0000000..9a2245e Binary files /dev/null and b/installer/staging/System.Net.Http.dll differ diff --git a/installer/staging/System.Net.HttpListener.dll b/installer/staging/System.Net.HttpListener.dll new file mode 100644 index 0000000..2cf3dc9 Binary files /dev/null and b/installer/staging/System.Net.HttpListener.dll differ diff --git a/installer/staging/System.Net.Mail.dll b/installer/staging/System.Net.Mail.dll new file mode 100644 index 0000000..6902689 Binary files /dev/null and b/installer/staging/System.Net.Mail.dll differ diff --git a/installer/staging/System.Net.NameResolution.dll b/installer/staging/System.Net.NameResolution.dll new file mode 100644 index 0000000..fd846c5 Binary files /dev/null and b/installer/staging/System.Net.NameResolution.dll differ diff --git a/installer/staging/System.Net.NetworkInformation.dll b/installer/staging/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..c2b560c Binary files /dev/null and b/installer/staging/System.Net.NetworkInformation.dll differ diff --git a/installer/staging/System.Net.Ping.dll b/installer/staging/System.Net.Ping.dll new file mode 100644 index 0000000..efa5d81 Binary files /dev/null and b/installer/staging/System.Net.Ping.dll differ diff --git a/installer/staging/System.Net.Primitives.dll b/installer/staging/System.Net.Primitives.dll new file mode 100644 index 0000000..4c3ff4c Binary files /dev/null and b/installer/staging/System.Net.Primitives.dll differ diff --git a/installer/staging/System.Net.Quic.dll b/installer/staging/System.Net.Quic.dll new file mode 100644 index 0000000..5b95b5c Binary files /dev/null and b/installer/staging/System.Net.Quic.dll differ diff --git a/installer/staging/System.Net.Requests.dll b/installer/staging/System.Net.Requests.dll new file mode 100644 index 0000000..adb5d4e Binary files /dev/null and b/installer/staging/System.Net.Requests.dll differ diff --git a/installer/staging/System.Net.Security.dll b/installer/staging/System.Net.Security.dll new file mode 100644 index 0000000..f37fde1 Binary files /dev/null and b/installer/staging/System.Net.Security.dll differ diff --git a/installer/staging/System.Net.ServicePoint.dll b/installer/staging/System.Net.ServicePoint.dll new file mode 100644 index 0000000..e0d7e9a Binary files /dev/null and b/installer/staging/System.Net.ServicePoint.dll differ diff --git a/installer/staging/System.Net.Sockets.dll b/installer/staging/System.Net.Sockets.dll new file mode 100644 index 0000000..b8fb2c9 Binary files /dev/null and b/installer/staging/System.Net.Sockets.dll differ diff --git a/installer/staging/System.Net.WebClient.dll b/installer/staging/System.Net.WebClient.dll new file mode 100644 index 0000000..ca5cd90 Binary files /dev/null and b/installer/staging/System.Net.WebClient.dll differ diff --git a/installer/staging/System.Net.WebHeaderCollection.dll b/installer/staging/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..4856192 Binary files /dev/null and b/installer/staging/System.Net.WebHeaderCollection.dll differ diff --git a/installer/staging/System.Net.WebProxy.dll b/installer/staging/System.Net.WebProxy.dll new file mode 100644 index 0000000..4f6559f Binary files /dev/null and b/installer/staging/System.Net.WebProxy.dll differ diff --git a/installer/staging/System.Net.WebSockets.Client.dll b/installer/staging/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..594a415 Binary files /dev/null and b/installer/staging/System.Net.WebSockets.Client.dll differ diff --git a/installer/staging/System.Net.WebSockets.dll b/installer/staging/System.Net.WebSockets.dll new file mode 100644 index 0000000..a83b326 Binary files /dev/null and b/installer/staging/System.Net.WebSockets.dll differ diff --git a/installer/staging/System.Net.dll b/installer/staging/System.Net.dll new file mode 100644 index 0000000..e2eb39d Binary files /dev/null and b/installer/staging/System.Net.dll differ diff --git a/installer/staging/System.Numerics.Vectors.dll b/installer/staging/System.Numerics.Vectors.dll new file mode 100644 index 0000000..d5f9c9c Binary files /dev/null and b/installer/staging/System.Numerics.Vectors.dll differ diff --git a/installer/staging/System.Numerics.dll b/installer/staging/System.Numerics.dll new file mode 100644 index 0000000..872c6e6 Binary files /dev/null and b/installer/staging/System.Numerics.dll differ diff --git a/installer/staging/System.ObjectModel.dll b/installer/staging/System.ObjectModel.dll new file mode 100644 index 0000000..9316209 Binary files /dev/null and b/installer/staging/System.ObjectModel.dll differ diff --git a/installer/staging/System.Printing.dll b/installer/staging/System.Printing.dll new file mode 100644 index 0000000..4c518a1 Binary files /dev/null and b/installer/staging/System.Printing.dll differ diff --git a/installer/staging/System.Private.CoreLib.dll b/installer/staging/System.Private.CoreLib.dll new file mode 100644 index 0000000..eed142c Binary files /dev/null and b/installer/staging/System.Private.CoreLib.dll differ diff --git a/installer/staging/System.Private.DataContractSerialization.dll b/installer/staging/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..651e673 Binary files /dev/null and b/installer/staging/System.Private.DataContractSerialization.dll differ diff --git a/installer/staging/System.Private.Uri.dll b/installer/staging/System.Private.Uri.dll new file mode 100644 index 0000000..7f84072 Binary files /dev/null and b/installer/staging/System.Private.Uri.dll differ diff --git a/installer/staging/System.Private.Xml.Linq.dll b/installer/staging/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..80936df Binary files /dev/null and b/installer/staging/System.Private.Xml.Linq.dll differ diff --git a/installer/staging/System.Private.Xml.dll b/installer/staging/System.Private.Xml.dll new file mode 100644 index 0000000..4376c97 Binary files /dev/null and b/installer/staging/System.Private.Xml.dll differ diff --git a/installer/staging/System.Reflection.DispatchProxy.dll b/installer/staging/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..5b20b72 Binary files /dev/null and b/installer/staging/System.Reflection.DispatchProxy.dll differ diff --git a/installer/staging/System.Reflection.Emit.ILGeneration.dll b/installer/staging/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..e73b3de Binary files /dev/null and b/installer/staging/System.Reflection.Emit.ILGeneration.dll differ diff --git a/installer/staging/System.Reflection.Emit.Lightweight.dll b/installer/staging/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..a05d920 Binary files /dev/null and b/installer/staging/System.Reflection.Emit.Lightweight.dll differ diff --git a/installer/staging/System.Reflection.Emit.dll b/installer/staging/System.Reflection.Emit.dll new file mode 100644 index 0000000..441f815 Binary files /dev/null and b/installer/staging/System.Reflection.Emit.dll differ diff --git a/installer/staging/System.Reflection.Extensions.dll b/installer/staging/System.Reflection.Extensions.dll new file mode 100644 index 0000000..5c2a446 Binary files /dev/null and b/installer/staging/System.Reflection.Extensions.dll differ diff --git a/installer/staging/System.Reflection.Metadata.dll b/installer/staging/System.Reflection.Metadata.dll new file mode 100644 index 0000000..fc3c3f6 Binary files /dev/null and b/installer/staging/System.Reflection.Metadata.dll differ diff --git a/installer/staging/System.Reflection.Primitives.dll b/installer/staging/System.Reflection.Primitives.dll new file mode 100644 index 0000000..971bb47 Binary files /dev/null and b/installer/staging/System.Reflection.Primitives.dll differ diff --git a/installer/staging/System.Reflection.TypeExtensions.dll b/installer/staging/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..7e1dd2a Binary files /dev/null and b/installer/staging/System.Reflection.TypeExtensions.dll differ diff --git a/installer/staging/System.Reflection.dll b/installer/staging/System.Reflection.dll new file mode 100644 index 0000000..815fc03 Binary files /dev/null and b/installer/staging/System.Reflection.dll differ diff --git a/installer/staging/System.Resources.Extensions.dll b/installer/staging/System.Resources.Extensions.dll new file mode 100644 index 0000000..d1e2563 Binary files /dev/null and b/installer/staging/System.Resources.Extensions.dll differ diff --git a/installer/staging/System.Resources.Reader.dll b/installer/staging/System.Resources.Reader.dll new file mode 100644 index 0000000..7a5b724 Binary files /dev/null and b/installer/staging/System.Resources.Reader.dll differ diff --git a/installer/staging/System.Resources.ResourceManager.dll b/installer/staging/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..9102b3b Binary files /dev/null and b/installer/staging/System.Resources.ResourceManager.dll differ diff --git a/installer/staging/System.Resources.Writer.dll b/installer/staging/System.Resources.Writer.dll new file mode 100644 index 0000000..b67fc6f Binary files /dev/null and b/installer/staging/System.Resources.Writer.dll differ diff --git a/installer/staging/System.Runtime.CompilerServices.Unsafe.dll b/installer/staging/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..2f59c5e Binary files /dev/null and b/installer/staging/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/installer/staging/System.Runtime.CompilerServices.VisualC.dll b/installer/staging/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..c884fe0 Binary files /dev/null and b/installer/staging/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/installer/staging/System.Runtime.Extensions.dll b/installer/staging/System.Runtime.Extensions.dll new file mode 100644 index 0000000..2e7f0a9 Binary files /dev/null and b/installer/staging/System.Runtime.Extensions.dll differ diff --git a/installer/staging/System.Runtime.Handles.dll b/installer/staging/System.Runtime.Handles.dll new file mode 100644 index 0000000..285c59d Binary files /dev/null and b/installer/staging/System.Runtime.Handles.dll differ diff --git a/installer/staging/System.Runtime.InteropServices.JavaScript.dll b/installer/staging/System.Runtime.InteropServices.JavaScript.dll new file mode 100644 index 0000000..862b0cc Binary files /dev/null and b/installer/staging/System.Runtime.InteropServices.JavaScript.dll differ diff --git a/installer/staging/System.Runtime.InteropServices.RuntimeInformation.dll b/installer/staging/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..d7f6f2d Binary files /dev/null and b/installer/staging/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/installer/staging/System.Runtime.InteropServices.dll b/installer/staging/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..225e9d1 Binary files /dev/null and b/installer/staging/System.Runtime.InteropServices.dll differ diff --git a/installer/staging/System.Runtime.Intrinsics.dll b/installer/staging/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..2d8abe6 Binary files /dev/null and b/installer/staging/System.Runtime.Intrinsics.dll differ diff --git a/installer/staging/System.Runtime.Loader.dll b/installer/staging/System.Runtime.Loader.dll new file mode 100644 index 0000000..d1d6ac5 Binary files /dev/null and b/installer/staging/System.Runtime.Loader.dll differ diff --git a/installer/staging/System.Runtime.Numerics.dll b/installer/staging/System.Runtime.Numerics.dll new file mode 100644 index 0000000..5a513df Binary files /dev/null and b/installer/staging/System.Runtime.Numerics.dll differ diff --git a/installer/staging/System.Runtime.Serialization.Formatters.dll b/installer/staging/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..7b41427 Binary files /dev/null and b/installer/staging/System.Runtime.Serialization.Formatters.dll differ diff --git a/installer/staging/System.Runtime.Serialization.Json.dll b/installer/staging/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..ee033d5 Binary files /dev/null and b/installer/staging/System.Runtime.Serialization.Json.dll differ diff --git a/installer/staging/System.Runtime.Serialization.Primitives.dll b/installer/staging/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..8db2dd1 Binary files /dev/null and b/installer/staging/System.Runtime.Serialization.Primitives.dll differ diff --git a/installer/staging/System.Runtime.Serialization.Xml.dll b/installer/staging/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..e389c12 Binary files /dev/null and b/installer/staging/System.Runtime.Serialization.Xml.dll differ diff --git a/installer/staging/System.Runtime.Serialization.dll b/installer/staging/System.Runtime.Serialization.dll new file mode 100644 index 0000000..bf16759 Binary files /dev/null and b/installer/staging/System.Runtime.Serialization.dll differ diff --git a/installer/staging/System.Runtime.dll b/installer/staging/System.Runtime.dll new file mode 100644 index 0000000..398def5 Binary files /dev/null and b/installer/staging/System.Runtime.dll differ diff --git a/installer/staging/System.Security.AccessControl.dll b/installer/staging/System.Security.AccessControl.dll new file mode 100644 index 0000000..3d3717f Binary files /dev/null and b/installer/staging/System.Security.AccessControl.dll differ diff --git a/installer/staging/System.Security.Claims.dll b/installer/staging/System.Security.Claims.dll new file mode 100644 index 0000000..325d20a Binary files /dev/null and b/installer/staging/System.Security.Claims.dll differ diff --git a/installer/staging/System.Security.Cryptography.Algorithms.dll b/installer/staging/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..243d82e Binary files /dev/null and b/installer/staging/System.Security.Cryptography.Algorithms.dll differ diff --git a/installer/staging/System.Security.Cryptography.Cng.dll b/installer/staging/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..0c1408b Binary files /dev/null and b/installer/staging/System.Security.Cryptography.Cng.dll differ diff --git a/installer/staging/System.Security.Cryptography.Csp.dll b/installer/staging/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..65cfc8c Binary files /dev/null and b/installer/staging/System.Security.Cryptography.Csp.dll differ diff --git a/installer/staging/System.Security.Cryptography.Encoding.dll b/installer/staging/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..dc82ed1 Binary files /dev/null and b/installer/staging/System.Security.Cryptography.Encoding.dll differ diff --git a/installer/staging/System.Security.Cryptography.OpenSsl.dll b/installer/staging/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..533b945 Binary files /dev/null and b/installer/staging/System.Security.Cryptography.OpenSsl.dll differ diff --git a/installer/staging/System.Security.Cryptography.Pkcs.dll b/installer/staging/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..a0b3e1f Binary files /dev/null and b/installer/staging/System.Security.Cryptography.Pkcs.dll differ diff --git a/installer/staging/System.Security.Cryptography.Primitives.dll b/installer/staging/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..8a6216d Binary files /dev/null and b/installer/staging/System.Security.Cryptography.Primitives.dll differ diff --git a/installer/staging/System.Security.Cryptography.ProtectedData.dll b/installer/staging/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..65ef770 Binary files /dev/null and b/installer/staging/System.Security.Cryptography.ProtectedData.dll differ diff --git a/installer/staging/System.Security.Cryptography.X509Certificates.dll b/installer/staging/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..768ac3e Binary files /dev/null and b/installer/staging/System.Security.Cryptography.X509Certificates.dll differ diff --git a/installer/staging/System.Security.Cryptography.Xml.dll b/installer/staging/System.Security.Cryptography.Xml.dll new file mode 100644 index 0000000..6bd060b Binary files /dev/null and b/installer/staging/System.Security.Cryptography.Xml.dll differ diff --git a/installer/staging/System.Security.Cryptography.dll b/installer/staging/System.Security.Cryptography.dll new file mode 100644 index 0000000..ab19f1f Binary files /dev/null and b/installer/staging/System.Security.Cryptography.dll differ diff --git a/installer/staging/System.Security.Permissions.dll b/installer/staging/System.Security.Permissions.dll new file mode 100644 index 0000000..167ae93 Binary files /dev/null and b/installer/staging/System.Security.Permissions.dll differ diff --git a/installer/staging/System.Security.Principal.Windows.dll b/installer/staging/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..effcd7b Binary files /dev/null and b/installer/staging/System.Security.Principal.Windows.dll differ diff --git a/installer/staging/System.Security.Principal.dll b/installer/staging/System.Security.Principal.dll new file mode 100644 index 0000000..4e95677 Binary files /dev/null and b/installer/staging/System.Security.Principal.dll differ diff --git a/installer/staging/System.Security.SecureString.dll b/installer/staging/System.Security.SecureString.dll new file mode 100644 index 0000000..60ed674 Binary files /dev/null and b/installer/staging/System.Security.SecureString.dll differ diff --git a/installer/staging/System.Security.dll b/installer/staging/System.Security.dll new file mode 100644 index 0000000..0b111ed Binary files /dev/null and b/installer/staging/System.Security.dll differ diff --git a/installer/staging/System.ServiceModel.Web.dll b/installer/staging/System.ServiceModel.Web.dll new file mode 100644 index 0000000..363cd00 Binary files /dev/null and b/installer/staging/System.ServiceModel.Web.dll differ diff --git a/installer/staging/System.ServiceProcess.dll b/installer/staging/System.ServiceProcess.dll new file mode 100644 index 0000000..facbe7c Binary files /dev/null and b/installer/staging/System.ServiceProcess.dll differ diff --git a/installer/staging/System.Text.Encoding.CodePages.dll b/installer/staging/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..990aac6 Binary files /dev/null and b/installer/staging/System.Text.Encoding.CodePages.dll differ diff --git a/installer/staging/System.Text.Encoding.Extensions.dll b/installer/staging/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..30359a1 Binary files /dev/null and b/installer/staging/System.Text.Encoding.Extensions.dll differ diff --git a/installer/staging/System.Text.Encoding.dll b/installer/staging/System.Text.Encoding.dll new file mode 100644 index 0000000..38f6821 Binary files /dev/null and b/installer/staging/System.Text.Encoding.dll differ diff --git a/installer/staging/System.Text.Encodings.Web.dll b/installer/staging/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..fe1f79a Binary files /dev/null and b/installer/staging/System.Text.Encodings.Web.dll differ diff --git a/installer/staging/System.Text.Json.dll b/installer/staging/System.Text.Json.dll new file mode 100644 index 0000000..9a7bb3a Binary files /dev/null and b/installer/staging/System.Text.Json.dll differ diff --git a/installer/staging/System.Text.RegularExpressions.dll b/installer/staging/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..a08cef6 Binary files /dev/null and b/installer/staging/System.Text.RegularExpressions.dll differ diff --git a/installer/staging/System.Threading.AccessControl.dll b/installer/staging/System.Threading.AccessControl.dll new file mode 100644 index 0000000..d261ee8 Binary files /dev/null and b/installer/staging/System.Threading.AccessControl.dll differ diff --git a/installer/staging/System.Threading.Channels.dll b/installer/staging/System.Threading.Channels.dll new file mode 100644 index 0000000..a8c202d Binary files /dev/null and b/installer/staging/System.Threading.Channels.dll differ diff --git a/installer/staging/System.Threading.Overlapped.dll b/installer/staging/System.Threading.Overlapped.dll new file mode 100644 index 0000000..846a2dd Binary files /dev/null and b/installer/staging/System.Threading.Overlapped.dll differ diff --git a/installer/staging/System.Threading.Tasks.Dataflow.dll b/installer/staging/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..6affc43 Binary files /dev/null and b/installer/staging/System.Threading.Tasks.Dataflow.dll differ diff --git a/installer/staging/System.Threading.Tasks.Extensions.dll b/installer/staging/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..e453c5c Binary files /dev/null and b/installer/staging/System.Threading.Tasks.Extensions.dll differ diff --git a/installer/staging/System.Threading.Tasks.Parallel.dll b/installer/staging/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..d234555 Binary files /dev/null and b/installer/staging/System.Threading.Tasks.Parallel.dll differ diff --git a/installer/staging/System.Threading.Tasks.dll b/installer/staging/System.Threading.Tasks.dll new file mode 100644 index 0000000..3a2b107 Binary files /dev/null and b/installer/staging/System.Threading.Tasks.dll differ diff --git a/installer/staging/System.Threading.Thread.dll b/installer/staging/System.Threading.Thread.dll new file mode 100644 index 0000000..8b0ed21 Binary files /dev/null and b/installer/staging/System.Threading.Thread.dll differ diff --git a/installer/staging/System.Threading.ThreadPool.dll b/installer/staging/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..dea32eb Binary files /dev/null and b/installer/staging/System.Threading.ThreadPool.dll differ diff --git a/installer/staging/System.Threading.Timer.dll b/installer/staging/System.Threading.Timer.dll new file mode 100644 index 0000000..825a808 Binary files /dev/null and b/installer/staging/System.Threading.Timer.dll differ diff --git a/installer/staging/System.Threading.dll b/installer/staging/System.Threading.dll new file mode 100644 index 0000000..f512c1b Binary files /dev/null and b/installer/staging/System.Threading.dll differ diff --git a/installer/staging/System.Transactions.Local.dll b/installer/staging/System.Transactions.Local.dll new file mode 100644 index 0000000..9b70413 Binary files /dev/null and b/installer/staging/System.Transactions.Local.dll differ diff --git a/installer/staging/System.Transactions.dll b/installer/staging/System.Transactions.dll new file mode 100644 index 0000000..77e1e8a Binary files /dev/null and b/installer/staging/System.Transactions.dll differ diff --git a/installer/staging/System.ValueTuple.dll b/installer/staging/System.ValueTuple.dll new file mode 100644 index 0000000..fd1db8b Binary files /dev/null and b/installer/staging/System.ValueTuple.dll differ diff --git a/installer/staging/System.Web.HttpUtility.dll b/installer/staging/System.Web.HttpUtility.dll new file mode 100644 index 0000000..dc5fa28 Binary files /dev/null and b/installer/staging/System.Web.HttpUtility.dll differ diff --git a/installer/staging/System.Web.dll b/installer/staging/System.Web.dll new file mode 100644 index 0000000..6232ed3 Binary files /dev/null and b/installer/staging/System.Web.dll differ diff --git a/installer/staging/System.Windows.Controls.Ribbon.dll b/installer/staging/System.Windows.Controls.Ribbon.dll new file mode 100644 index 0000000..0f826ac Binary files /dev/null and b/installer/staging/System.Windows.Controls.Ribbon.dll differ diff --git a/installer/staging/System.Windows.Extensions.dll b/installer/staging/System.Windows.Extensions.dll new file mode 100644 index 0000000..0a761fe Binary files /dev/null and b/installer/staging/System.Windows.Extensions.dll differ diff --git a/installer/staging/System.Windows.Input.Manipulations.dll b/installer/staging/System.Windows.Input.Manipulations.dll new file mode 100644 index 0000000..76d0305 Binary files /dev/null and b/installer/staging/System.Windows.Input.Manipulations.dll differ diff --git a/installer/staging/System.Windows.Presentation.dll b/installer/staging/System.Windows.Presentation.dll new file mode 100644 index 0000000..9eeeafe Binary files /dev/null and b/installer/staging/System.Windows.Presentation.dll differ diff --git a/installer/staging/System.Windows.dll b/installer/staging/System.Windows.dll new file mode 100644 index 0000000..1edff58 Binary files /dev/null and b/installer/staging/System.Windows.dll differ diff --git a/installer/staging/System.Xaml.dll b/installer/staging/System.Xaml.dll new file mode 100644 index 0000000..19dbb4e Binary files /dev/null and b/installer/staging/System.Xaml.dll differ diff --git a/installer/staging/System.Xml.Linq.dll b/installer/staging/System.Xml.Linq.dll new file mode 100644 index 0000000..bde3175 Binary files /dev/null and b/installer/staging/System.Xml.Linq.dll differ diff --git a/installer/staging/System.Xml.ReaderWriter.dll b/installer/staging/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..9757625 Binary files /dev/null and b/installer/staging/System.Xml.ReaderWriter.dll differ diff --git a/installer/staging/System.Xml.Serialization.dll b/installer/staging/System.Xml.Serialization.dll new file mode 100644 index 0000000..e0fb15b Binary files /dev/null and b/installer/staging/System.Xml.Serialization.dll differ diff --git a/installer/staging/System.Xml.XDocument.dll b/installer/staging/System.Xml.XDocument.dll new file mode 100644 index 0000000..2e0fee4 Binary files /dev/null and b/installer/staging/System.Xml.XDocument.dll differ diff --git a/installer/staging/System.Xml.XPath.XDocument.dll b/installer/staging/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..95c5c37 Binary files /dev/null and b/installer/staging/System.Xml.XPath.XDocument.dll differ diff --git a/installer/staging/System.Xml.XPath.dll b/installer/staging/System.Xml.XPath.dll new file mode 100644 index 0000000..eeb2614 Binary files /dev/null and b/installer/staging/System.Xml.XPath.dll differ diff --git a/installer/staging/System.Xml.XmlDocument.dll b/installer/staging/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..9d0a2d7 Binary files /dev/null and b/installer/staging/System.Xml.XmlDocument.dll differ diff --git a/installer/staging/System.Xml.XmlSerializer.dll b/installer/staging/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..779fdef Binary files /dev/null and b/installer/staging/System.Xml.XmlSerializer.dll differ diff --git a/installer/staging/System.Xml.dll b/installer/staging/System.Xml.dll new file mode 100644 index 0000000..5185c79 Binary files /dev/null and b/installer/staging/System.Xml.dll differ diff --git a/installer/staging/System.dll b/installer/staging/System.dll new file mode 100644 index 0000000..9215aaf Binary files /dev/null and b/installer/staging/System.dll differ diff --git a/installer/staging/UIAutomationClient.dll b/installer/staging/UIAutomationClient.dll new file mode 100644 index 0000000..b1fce45 Binary files /dev/null and b/installer/staging/UIAutomationClient.dll differ diff --git a/installer/staging/UIAutomationClientSideProviders.dll b/installer/staging/UIAutomationClientSideProviders.dll new file mode 100644 index 0000000..2405c12 Binary files /dev/null and b/installer/staging/UIAutomationClientSideProviders.dll differ diff --git a/installer/staging/UIAutomationProvider.dll b/installer/staging/UIAutomationProvider.dll new file mode 100644 index 0000000..f298f21 Binary files /dev/null and b/installer/staging/UIAutomationProvider.dll differ diff --git a/installer/staging/UIAutomationTypes.dll b/installer/staging/UIAutomationTypes.dll new file mode 100644 index 0000000..563afd7 Binary files /dev/null and b/installer/staging/UIAutomationTypes.dll differ diff --git a/installer/staging/WindowsBase.dll b/installer/staging/WindowsBase.dll new file mode 100644 index 0000000..bd9b454 Binary files /dev/null and b/installer/staging/WindowsBase.dll differ diff --git a/installer/staging/clretwrc.dll b/installer/staging/clretwrc.dll new file mode 100644 index 0000000..f3fa86f Binary files /dev/null and b/installer/staging/clretwrc.dll differ diff --git a/installer/staging/clrgc.dll b/installer/staging/clrgc.dll new file mode 100644 index 0000000..180e9ed Binary files /dev/null and b/installer/staging/clrgc.dll differ diff --git a/installer/staging/clrgcexp.dll b/installer/staging/clrgcexp.dll new file mode 100644 index 0000000..ba42ebc Binary files /dev/null and b/installer/staging/clrgcexp.dll differ diff --git a/installer/staging/clrjit.dll b/installer/staging/clrjit.dll new file mode 100644 index 0000000..9482ae9 Binary files /dev/null and b/installer/staging/clrjit.dll differ diff --git a/installer/staging/coreclr.dll b/installer/staging/coreclr.dll new file mode 100644 index 0000000..897d9fc Binary files /dev/null and b/installer/staging/coreclr.dll differ diff --git a/installer/staging/createdump.exe b/installer/staging/createdump.exe new file mode 100644 index 0000000..c538d0a Binary files /dev/null and b/installer/staging/createdump.exe differ diff --git a/installer/staging/hostfxr.dll b/installer/staging/hostfxr.dll new file mode 100644 index 0000000..5a7258f Binary files /dev/null and b/installer/staging/hostfxr.dll differ diff --git a/installer/staging/hostpolicy.dll b/installer/staging/hostpolicy.dll new file mode 100644 index 0000000..b573b55 Binary files /dev/null and b/installer/staging/hostpolicy.dll differ diff --git a/installer/staging/init.sql b/installer/staging/init.sql new file mode 100644 index 0000000..91eb954 --- /dev/null +++ b/installer/staging/init.sql @@ -0,0 +1,177 @@ +-- Run this script against the Housing database before running the app. +-- It creates the login tables and login procedures. + +IF OBJECT_ID(N'dbo.Operator_Account', N'U') IS NULL +BEGIN + CREATE TABLE dbo.Operator_Account + ( + [Operator] NVARCHAR(10) NOT NULL + CONSTRAINT PK_Operator_Account PRIMARY KEY, + [Password] NVARCHAR(50) NOT NULL, + [CreatedAt] DATETIME2(0) NOT NULL + CONSTRAINT DF_Operator_Account_CreatedAt DEFAULT (SYSDATETIME()), + [UpdatedAt] DATETIME2(0) NULL + ); +END; +GO + +IF COL_LENGTH(N'dbo.Operator_Account', N'IsActive') IS NOT NULL +BEGIN + DECLARE @DefaultConstraintName SYSNAME; + + SELECT @DefaultConstraintName = dc.name + FROM sys.default_constraints AS dc + INNER JOIN sys.columns AS c + ON c.default_object_id = dc.object_id + WHERE dc.parent_object_id = OBJECT_ID(N'dbo.Operator_Account', N'U') + AND c.name = N'IsActive'; + + IF @DefaultConstraintName IS NOT NULL + BEGIN + EXEC(N'ALTER TABLE dbo.Operator_Account DROP CONSTRAINT [' + @DefaultConstraintName + N']'); + END; + + ALTER TABLE dbo.Operator_Account DROP COLUMN [IsActive]; +END; +GO + +IF OBJECT_ID(N'dbo.Operator_Process', N'U') IS NULL +BEGIN + CREATE TABLE dbo.Operator_Process + ( + [Operator] NVARCHAR(10) NOT NULL, + [ProcessName] NVARCHAR(30) NOT NULL, + [CreatedAt] DATETIME2(0) NOT NULL + CONSTRAINT DF_Operator_Process_CreatedAt DEFAULT (SYSDATETIME()), + CONSTRAINT PK_Operator_Process PRIMARY KEY ([Operator], [ProcessName]), + CONSTRAINT FK_Operator_Process_Operator_Account FOREIGN KEY ([Operator]) + REFERENCES dbo.Operator_Account ([Operator]) + ON DELETE CASCADE + ); +END; +GO + +IF EXISTS (SELECT 1 FROM dbo.Operator_Account WHERE [Operator] = N'su') +BEGIN + UPDATE dbo.Operator_Account + SET + [Password] = N'su', + [UpdatedAt] = SYSDATETIME() + WHERE [Operator] = N'su'; +END +ELSE +BEGIN + INSERT INTO dbo.Operator_Account + ( + [Operator], + [Password] + ) + VALUES + ( + N'su', + N'su' + ); +END; +GO + +IF NOT EXISTS +( + SELECT 1 + FROM dbo.Operator_Process + WHERE [Operator] = N'su' + AND [ProcessName] = N'Housing' +) +BEGIN + INSERT INTO dbo.Operator_Process + ( + [Operator], + [ProcessName] + ) + VALUES + ( + N'su', + N'Housing' + ); +END; +GO + +CREATE OR ALTER PROCEDURE dbo.CheckOperator + @Operator NVARCHAR(10), + @Password NVARCHAR(50), + @ProcessName NVARCHAR(30) = N'Housing' +AS +BEGIN + SET NOCOUNT ON; + + SELECT CAST( + CASE + WHEN EXISTS + ( + SELECT 1 + FROM dbo.Operator_Account AS account + INNER JOIN dbo.Operator_Process AS process + ON process.[Operator] = account.[Operator] + WHERE account.[Operator] = @Operator + AND account.[Password] = @Password + AND process.[ProcessName] = @ProcessName + ) + THEN 1 + ELSE 0 + END AS BIT) AS IsValid; +END; +GO + +CREATE OR ALTER PROCEDURE dbo.SaveOperator + @Operator NVARCHAR(10), + @Password NVARCHAR(50), + @ProcessName NVARCHAR(30) = N'Housing' +AS +BEGIN + SET NOCOUNT ON; + SET XACT_ABORT ON; + + BEGIN TRANSACTION; + + UPDATE dbo.Operator_Account + SET + [Password] = @Password, + [UpdatedAt] = SYSDATETIME() + WHERE [Operator] = @Operator; + + IF @@ROWCOUNT = 0 + BEGIN + INSERT INTO dbo.Operator_Account + ( + [Operator], + [Password] + ) + VALUES + ( + @Operator, + @Password + ); + END; + + IF NOT EXISTS + ( + SELECT 1 + FROM dbo.Operator_Process + WHERE [Operator] = @Operator + AND [ProcessName] = @ProcessName + ) + BEGIN + INSERT INTO dbo.Operator_Process + ( + [Operator], + [ProcessName] + ) + VALUES + ( + @Operator, + @ProcessName + ); + END; + + COMMIT TRANSACTION; +END; +GO diff --git a/installer/staging/install.cmd b/installer/staging/install.cmd new file mode 100644 index 0000000..edd347d --- /dev/null +++ b/installer/staging/install.cmd @@ -0,0 +1,3 @@ +@echo off +powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0install.ps1" +if errorlevel 1 pause diff --git a/installer/staging/install.ps1 b/installer/staging/install.ps1 new file mode 100644 index 0000000..566e885 --- /dev/null +++ b/installer/staging/install.ps1 @@ -0,0 +1,30 @@ +$ErrorActionPreference = 'Stop' + +$appName = 'AMO Housing' +$installDir = Join-Path $env:LOCALAPPDATA 'Programs\AMO Housing' +$desktop = [Environment]::GetFolderPath('DesktopDirectory') +$shortcutPath = Join-Path $desktop 'AMO Housing.lnk' +$sourceDir = Split-Path -Parent $MyInvocation.MyCommand.Path + +New-Item -ItemType Directory -Force -Path $installDir | Out-Null + +Get-ChildItem -LiteralPath $sourceDir -Force | + Where-Object { $_.Name -notin @('install.ps1', 'install.cmd') } | + ForEach-Object { + $destination = Join-Path $installDir $_.Name + Copy-Item -LiteralPath $_.FullName -Destination $destination -Recurse -Force + } + +$targetPath = Join-Path $installDir 'Housing.exe' +$iconPath = Join-Path $installDir 'Housing_voltage_current_icon.ico' +$shell = New-Object -ComObject WScript.Shell +$shortcut = $shell.CreateShortcut($shortcutPath) +$shortcut.TargetPath = $targetPath +$shortcut.WorkingDirectory = $installDir +$shortcut.IconLocation = $iconPath +$shortcut.Description = $appName +$shortcut.Save() + +Write-Host "$appName installation completed." +Write-Host "Installed to: $installDir" +Write-Host "Desktop shortcut: $shortcutPath" diff --git a/installer/staging/mscordaccore.dll b/installer/staging/mscordaccore.dll new file mode 100644 index 0000000..d72de82 Binary files /dev/null and b/installer/staging/mscordaccore.dll differ diff --git a/installer/staging/mscordaccore_amd64_amd64_9.0.1726.26416.dll b/installer/staging/mscordaccore_amd64_amd64_9.0.1726.26416.dll new file mode 100644 index 0000000..d72de82 Binary files /dev/null and b/installer/staging/mscordaccore_amd64_amd64_9.0.1726.26416.dll differ diff --git a/installer/staging/mscordbi.dll b/installer/staging/mscordbi.dll new file mode 100644 index 0000000..b81f3df Binary files /dev/null and b/installer/staging/mscordbi.dll differ diff --git a/installer/staging/mscorlib.dll b/installer/staging/mscorlib.dll new file mode 100644 index 0000000..11c5d43 Binary files /dev/null and b/installer/staging/mscorlib.dll differ diff --git a/installer/staging/mscorrc.dll b/installer/staging/mscorrc.dll new file mode 100644 index 0000000..99c0fea Binary files /dev/null and b/installer/staging/mscorrc.dll differ diff --git a/installer/staging/msquic.dll b/installer/staging/msquic.dll new file mode 100644 index 0000000..9f0824a Binary files /dev/null and b/installer/staging/msquic.dll differ diff --git a/installer/staging/netstandard.dll b/installer/staging/netstandard.dll new file mode 100644 index 0000000..5b4edfa Binary files /dev/null and b/installer/staging/netstandard.dll differ diff --git a/installer/staging/vcruntime140_cor3.dll b/installer/staging/vcruntime140_cor3.dll new file mode 100644 index 0000000..5786e93 Binary files /dev/null and b/installer/staging/vcruntime140_cor3.dll differ diff --git a/installer/staging/wpfgfx_cor3.dll b/installer/staging/wpfgfx_cor3.dll new file mode 100644 index 0000000..c5fde62 Binary files /dev/null and b/installer/staging/wpfgfx_cor3.dll differ diff --git a/publish/setup-win-x64/Accessibility.dll b/publish/setup-win-x64/Accessibility.dll new file mode 100644 index 0000000..490edee Binary files /dev/null and b/publish/setup-win-x64/Accessibility.dll differ diff --git a/publish/setup-win-x64/Azure.Core.dll b/publish/setup-win-x64/Azure.Core.dll new file mode 100644 index 0000000..8883ec9 Binary files /dev/null and b/publish/setup-win-x64/Azure.Core.dll differ diff --git a/publish/setup-win-x64/Azure.Identity.dll b/publish/setup-win-x64/Azure.Identity.dll new file mode 100644 index 0000000..ea19200 Binary files /dev/null and b/publish/setup-win-x64/Azure.Identity.dll differ diff --git a/publish/setup-win-x64/D3DCompiler_47_cor3.dll b/publish/setup-win-x64/D3DCompiler_47_cor3.dll new file mode 100644 index 0000000..948cc90 Binary files /dev/null and b/publish/setup-win-x64/D3DCompiler_47_cor3.dll differ diff --git a/publish/setup-win-x64/Database.ini b/publish/setup-win-x64/Database.ini new file mode 100644 index 0000000..8f32133 --- /dev/null +++ b/publish/setup-win-x64/Database.ini @@ -0,0 +1,13 @@ +[Database] +IP=127.0.0.1 +Database=Housing +DbId=sa +DbPw=your_password +Encrypt=True +TrustServerCertificate=True +Timeout=5 + +[Login] +Procedure=dbo.CheckOperator +ProcessName=Housing +OfflinePreview=true diff --git a/publish/setup-win-x64/DirectWriteForwarder.dll b/publish/setup-win-x64/DirectWriteForwarder.dll new file mode 100644 index 0000000..4a0fb1a Binary files /dev/null and b/publish/setup-win-x64/DirectWriteForwarder.dll differ diff --git a/publish/setup-win-x64/Hardware.ini b/publish/setup-win-x64/Hardware.ini new file mode 100644 index 0000000..cafa5ef --- /dev/null +++ b/publish/setup-win-x64/Hardware.ini @@ -0,0 +1,78 @@ +[Board] +PortName=COM5 +BaudRate=115200 +ReadTimeout=5000 +PreConnectCommand=x00o +ConnectCommand=x00c_001101:owt28006727ea97c7801 +ReadIdCommand=x00c_001101:ow2800326003e +PostReadIdCommand=x00o +CalDefaultCommand=x00c_001001:owt28006727ea97c7801 +EndToken= +DtrEnable=false +RtsEnable=false + +[BarcodeScanner] +Enabled=true +PortName=Auto +BaudRate=9600 +ReadTimeout=500 +IdleCommitMilliseconds=250 +DtrEnable=true +RtsEnable=true + +[StartSignal] +; USB-6501 +Enabled=true +Connection=Ni6501 +PhysicalChannel=Dev1/port0/line0 +ActiveState=High +PollIntervalMilliseconds=50 +TimeoutMilliseconds=30000 +PostSignalDelayMilliseconds=2000 +RequireInactiveBeforeStart=true + +[Equipment] +; V 출력: Keysight 34465A DMM 값 +; A 출력: Keysight E36233A Power Supply CH1 Current 값 +; USB 장비는 Keysight Connection Expert 또는 NI MAX에서 보이는 VISA 주소를 Resource +Timeout=5000 +SettleMilliseconds=300 +PreBoardCommand=VOLT 5, (@2);OUTP ON, (@2) +PreBoardDelayMilliseconds=2000 +LogoutCommand=OUTP OFF, (@1);OUTP OFF, (@2) + +; 34465A DMM +VoltageConnection=LAN +VoltageResource= +VoltageIdnMatch=34465A +VoltageHost=192.168.200.3 +VoltagePort=5025 +VoltageSetupCommand= +VoltageReadCommand=MEAS:VOLT:DC? + +; E36233A Power Supply +CurrentConnection=LAN +CurrentResource= +CurrentIdnMatch=E36233A +; Change this to the E36233A LAN IP if the instrument uses a different address. +CurrentHost=192.168.200.111 +CurrentPort=5025 +CurrentPortName= +CurrentBaudRate=9600 +CurrentTerminator=LF +CurrentSetupCommand=OUTP ON, (@1) +CurrentCleanupCommand=OUTP OFF, (@1) +CurrentReadCommand=MEAS:CURR? (@1) + +; COM 포트로 잡히는 장비 예시: +; VoltageConnection=Serial +; VoltagePortName=Auto +; VoltageBaudRate=115200 + +; LAN 장비 예시: +; VoltageConnection=Tcp +; VoltageHost=192.168.0.10 +; VoltagePort=5025 + +; E36233A 파워서플라이에서 CH1 전압까지 읽고 싶을 때 예시: +; VoltageReadCommand=MEAS:VOLT? CH1 diff --git a/publish/setup-win-x64/Housing.deps.json b/publish/setup-win-x64/Housing.deps.json new file mode 100644 index 0000000..5a7b0ab --- /dev/null +++ b/publish/setup-win-x64/Housing.deps.json @@ -0,0 +1,1453 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": {}, + ".NETCoreApp,Version=v9.0/win-x64": { + "Housing/1.0.0": { + "dependencies": { + "Microsoft.Data.SqlClient": "6.1.3", + "System.IO.Ports": "9.0.10", + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "9.0.17", + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "9.0.17" + }, + "runtime": { + "Housing.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/9.0.17": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "14.0.0.0", + "fileVersion": "14.0.1726.26416" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.AppContext.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Buffers.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Collections.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Console.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Data.Common.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Drawing.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Formats.Tar.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Globalization.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.Pipelines.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Linq.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Http.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Security.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Reflection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.InteropServices.JavaScript.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "8.1.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Runtime.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Text.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "9.0.1726.26416" + } + }, + "native": { + "Microsoft.DiaSymReader.Native.amd64.dll": { + "fileVersion": "14.42.34436.0" + }, + "System.IO.Compression.Native.dll": { + "fileVersion": "9.0.1726.26416" + }, + "clretwrc.dll": { + "fileVersion": "9.0.1726.26416" + }, + "clrgc.dll": { + "fileVersion": "9.0.1726.26416" + }, + "clrgcexp.dll": { + "fileVersion": "9.0.1726.26416" + }, + "clrjit.dll": { + "fileVersion": "9.0.1726.26416" + }, + "coreclr.dll": { + "fileVersion": "9.0.1726.26416" + }, + "createdump.exe": { + "fileVersion": "9.0.1726.26416" + }, + "hostfxr.dll": { + "fileVersion": "9.0.1726.26416" + }, + "hostpolicy.dll": { + "fileVersion": "9.0.1726.26416" + }, + "mscordaccore.dll": { + "fileVersion": "9.0.1726.26416" + }, + "mscordaccore_amd64_amd64_9.0.1726.26416.dll": { + "fileVersion": "9.0.1726.26416" + }, + "mscordbi.dll": { + "fileVersion": "9.0.1726.26416" + }, + "mscorrc.dll": { + "fileVersion": "9.0.1726.26416" + }, + "msquic.dll": { + "fileVersion": "2.4.18.0" + } + } + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/9.0.17": { + "runtime": { + "Accessibility.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "9.0.1726.26501" + }, + "DirectWriteForwarder.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "Microsoft.Win32.Registry.AccessControl.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "PresentationCore.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework-SystemCore.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework-SystemData.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework-SystemDrawing.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework-SystemXml.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework-SystemXmlLinq.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework.Aero.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework.Aero2.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework.AeroLite.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework.Classic.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework.Fluent.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework.Luna.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework.Royale.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationFramework.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "PresentationUI.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "ReachFramework.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "System.CodeDom.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.EventLog.Messages.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "0.0.0.0" + }, + "System.Diagnostics.EventLog.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.DirectoryServices.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Formats.Nrbf.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.IO.Packaging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Printing.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "System.Resources.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Security.Permissions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Threading.AccessControl.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Windows.Controls.Ribbon.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "System.Windows.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26416" + }, + "System.Windows.Input.Manipulations.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "System.Windows.Presentation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "System.Xaml.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "UIAutomationClient.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "UIAutomationClientSideProviders.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "UIAutomationProvider.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "UIAutomationTypes.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + }, + "WindowsBase.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1726.26701" + } + }, + "native": { + "D3DCompiler_47_cor3.dll": { + "fileVersion": "10.0.26100.7705" + }, + "PenImc_cor3.dll": { + "fileVersion": "9.0.1726.26701" + }, + "PresentationNative_cor3.dll": { + "fileVersion": "9.0.26.22701" + }, + "vcruntime140_cor3.dll": { + "fileVersion": "14.44.35211.0" + }, + "wpfgfx_cor3.dll": { + "fileVersion": "9.0.1726.26701" + } + } + }, + "Azure.Core/1.47.1": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", + "System.ClientModel": "1.5.1", + "System.Memory.Data": "8.0.1" + }, + "runtime": { + "lib/net8.0/Azure.Core.dll": { + "assemblyVersion": "1.47.1.0", + "fileVersion": "1.4700.125.36505" + } + } + }, + "Azure.Identity/1.14.2": { + "dependencies": { + "Azure.Core": "1.47.1", + "Microsoft.Identity.Client": "4.73.1", + "Microsoft.Identity.Client.Extensions.Msal": "4.73.1" + }, + "runtime": { + "lib/net8.0/Azure.Identity.dll": { + "assemblyVersion": "1.14.2.0", + "fileVersion": "1.1400.225.36004" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Bcl.Cryptography/9.0.4": { + "runtime": { + "lib/net9.0/Microsoft.Bcl.Cryptography.dll": { + "assemblyVersion": "9.0.0.4", + "fileVersion": "9.0.425.16305" + } + } + }, + "Microsoft.Data.SqlClient/6.1.3": { + "dependencies": { + "Azure.Core": "1.47.1", + "Azure.Identity": "1.14.2", + "Microsoft.Bcl.Cryptography": "9.0.4", + "Microsoft.Data.SqlClient.SNI.runtime": "6.0.2", + "Microsoft.Extensions.Caching.Memory": "9.0.4", + "Microsoft.IdentityModel.JsonWebTokens": "7.7.1", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.7.1", + "Microsoft.SqlServer.Server": "1.0.0" + }, + "runtime": { + "runtimes/win/lib/net9.0/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.13.25316.3" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.Data.SqlClient.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.Data.SqlClient.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.Data.SqlClient.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.Data.SqlClient.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.Data.SqlClient.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.Data.SqlClient.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.Data.SqlClient.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.Data.SqlClient.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/6.0.2": { + "native": { + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "fileVersion": "6.2.0.0" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.4": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.4" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.425.16305" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.4": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.4", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4", + "Microsoft.Extensions.Logging.Abstractions": "9.0.4", + "Microsoft.Extensions.Options": "9.0.4", + "Microsoft.Extensions.Primitives": "9.0.4" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.425.16305" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.4": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.425.16305" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.4": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.425.16305" + } + } + }, + "Microsoft.Extensions.Options/9.0.4": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4", + "Microsoft.Extensions.Primitives": "9.0.4" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.425.16305" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.4": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.425.16305" + } + } + }, + "Microsoft.Identity.Client/4.73.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "7.7.1" + }, + "runtime": { + "lib/net8.0/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.73.1.0", + "fileVersion": "4.73.1.0" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.73.1": { + "dependencies": { + "Microsoft.Identity.Client": "4.73.1" + }, + "runtime": { + "lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "assemblyVersion": "4.73.1.0", + "fileVersion": "4.73.1.0" + } + } + }, + "Microsoft.IdentityModel.Abstractions/7.7.1": { + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "7.7.1.0", + "fileVersion": "7.7.1.50719" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/7.7.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "7.7.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "7.7.1.0", + "fileVersion": "7.7.1.50719" + } + } + }, + "Microsoft.IdentityModel.Logging/7.7.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "7.7.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "7.7.1.0", + "fileVersion": "7.7.1.50719" + } + } + }, + "Microsoft.IdentityModel.Protocols/7.7.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "7.7.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "7.7.1.0", + "fileVersion": "7.7.1.50719" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.7.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "7.7.1", + "System.IdentityModel.Tokens.Jwt": "7.7.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "7.7.1.0", + "fileVersion": "7.7.1.50719" + } + } + }, + "Microsoft.IdentityModel.Tokens/7.7.1": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "7.7.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "7.7.1.0", + "fileVersion": "7.7.1.50719" + } + } + }, + "Microsoft.SqlServer.Server/1.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "System.ClientModel/1.5.1": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.4", + "System.Memory.Data": "8.0.1" + }, + "runtime": { + "lib/net8.0/System.ClientModel.dll": { + "assemblyVersion": "1.5.1.0", + "fileVersion": "1.500.125.36405" + } + } + }, + "System.IdentityModel.Tokens.Jwt/7.7.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "7.7.1", + "Microsoft.IdentityModel.Tokens": "7.7.1" + }, + "runtime": { + "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "7.7.1.0", + "fileVersion": "7.7.1.50719" + } + } + }, + "System.IO.Ports/9.0.10": { + "runtime": { + "runtimes/win/lib/net9.0/System.IO.Ports.dll": { + "assemblyVersion": "9.0.0.10", + "fileVersion": "9.0.1025.47515" + } + } + }, + "System.Memory.Data/8.0.1": { + "runtime": { + "lib/net8.0/System.Memory.Data.dll": { + "assemblyVersion": "8.0.0.1", + "fileVersion": "8.0.1024.46610" + } + } + } + } + }, + "libraries": { + "Housing/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/9.0.17": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/9.0.17": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "Azure.Core/1.47.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oPcncSsDHuxB8SC522z47xbp2+ttkcKv2YZ90KXhRKN0YQd2+7l1UURT9EBzUNEXtkLZUOAB5xbByMTrYRh3yA==", + "path": "azure.core/1.47.1", + "hashPath": "azure.core.1.47.1.nupkg.sha512" + }, + "Azure.Identity/1.14.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhNMwOTwT+I2wIcJKSdP0ADyB2aK+JaYWZxO8LSRDm5w77LFr0ykR9xmt2ZV5T1gaI7xU6iNFIh/yW1dAlpddQ==", + "path": "azure.identity/1.14.2", + "hashPath": "azure.identity.1.14.2.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==", + "path": "microsoft.bcl.asyncinterfaces/8.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.Cryptography/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YgZYAWzyNuPVtPq6WNm0bqOWNjYaWgl5mBWTGZyNoXitYBUYSp6iUB9AwK0V1mo793qRJUXz2t6UZrWITZSvuQ==", + "path": "microsoft.bcl.cryptography/9.0.4", + "hashPath": "microsoft.bcl.cryptography.9.0.4.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/6.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ys/z8Tx8074CDU20EilNvBRJuJdwKSthpHkzUpt3JghnjB6GjbZusoOcCtNbhPCCWsEJqN8bxaT7HnS3UZuUDQ==", + "path": "microsoft.data.sqlclient/6.1.3", + "hashPath": "microsoft.data.sqlclient.6.1.3.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/6.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f+pRODTWX7Y67jXO3T5S2dIPZ9qMJNySjlZT/TKmWVNWe19N8jcWmHaqHnnchaq3gxEKv1SWVY5EFzOD06l41w==", + "path": "microsoft.data.sqlclient.sni.runtime/6.0.2", + "hashPath": "microsoft.data.sqlclient.sni.runtime.6.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-imcZ5BGhBw5mNsWLepBbqqumWaFe0GtvyCvne2/2wsDIBRa2+Lhx4cU/pKt/4BwOizzUEOls2k1eOJQXHGMalg==", + "path": "microsoft.extensions.caching.abstractions/9.0.4", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.4.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G5rEq1Qez5VJDTEyRsRUnewAspKjaY57VGsdZ8g8Ja6sXXzoiI3PpTd1t43HjHqNWD5A06MQveb2lscn+2CU+w==", + "path": "microsoft.extensions.caching.memory/9.0.4", + "hashPath": "microsoft.extensions.caching.memory.9.0.4.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UI0TQPVkS78bFdjkTodmkH0Fe8lXv9LnhGFKgKrsgUJ5a5FVdFRcgjIkBVLbGgdRhxWirxH/8IXUtEyYJx6GQg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.4", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.4.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0MXlimU4Dud6t+iNi5NEz3dO2w1HXdhoOLaYFuLPCjAsvlPQGwOT6V2KZRMLEhCAm/stSZt1AUv0XmDdkjvtbw==", + "path": "microsoft.extensions.logging.abstractions/9.0.4", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.4.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fiFI2+58kicqVZyt/6obqoFwHiab7LC4FkQ3mmiBJ28Yy4fAvy2+v9MRnSvvlOO8chTOjKsdafFl/K9veCPo5g==", + "path": "microsoft.extensions.options/9.0.4", + "hashPath": "microsoft.extensions.options.9.0.4.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SPFyMjyku1nqTFFJ928JAMd0QnRe4xjE7KeKnZMWXf3xk+6e0WiOZAluYtLdbJUXtsl2cCRSi8cBquJ408k8RA==", + "path": "microsoft.extensions.primitives/9.0.4", + "hashPath": "microsoft.extensions.primitives.9.0.4.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.73.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NnDLS8QwYqO5ZZecL2oioi1LUqjh5Ewk4bMLzbgiXJbQmZhDLtKwLxL3DpGMlQAJ2G4KgEnvGPKa+OOgffeJbw==", + "path": "microsoft.identity.client/4.73.1", + "hashPath": "microsoft.identity.client.4.73.1.nupkg.sha512" + }, + "Microsoft.Identity.Client.Extensions.Msal/4.73.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xDztAiV2F0wI0W8FLKv5cbaBefyLD6JVaAsvgSN7bjWNCzGYzHbcOEIP5s4TJXUpQzMfUyBsFl1mC6Zmgpz0PQ==", + "path": "microsoft.identity.client.extensions.msal/4.73.1", + "hashPath": "microsoft.identity.client.extensions.msal.4.73.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/7.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S7sHg6gLg7oFqNGLwN1qSbJDI+QcRRj8SuJ1jHyCmKSipnF6ZQL+tFV2NzVfGj/xmGT9TykQdQiBN+p5Idl4TA==", + "path": "microsoft.identitymodel.abstractions/7.7.1", + "hashPath": "microsoft.identitymodel.abstractions.7.7.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/7.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Izi75UCUssvo8LPx3OVnEeZay58qaFicrtSnbtUt7q8qQi0gy46gh4V8VUTkMVMKXV6VMyjBVmeNNgeCUJuIw==", + "path": "microsoft.identitymodel.jsonwebtokens/7.7.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.7.7.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/7.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BZNgSq/o8gsKExdYoBKPR65fdsxW0cTF8PsdqB8y011AGUJJW300S/ZIsEUD0+sOmGc003Gwv3FYbjrVjvsLNQ==", + "path": "microsoft.identitymodel.logging/7.7.1", + "hashPath": "microsoft.identitymodel.logging.7.7.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/7.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h+fHHBGokepmCX+QZXJk4Ij8OApCb2n2ktoDkNX5CXteXsOxTHMNgjPGpAwdJMFvAL7TtGarUnk3o97NmBq2QQ==", + "path": "microsoft.identitymodel.protocols/7.7.1", + "hashPath": "microsoft.identitymodel.protocols.7.7.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yT2Hdj8LpPbcT9C9KlLVxXl09C8zjFaVSaApdOwuecMuoV4s6Sof/mnTDz/+F/lILPIBvrWugR9CC7iRVZgbfQ==", + "path": "microsoft.identitymodel.protocols.openidconnect/7.7.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.7.7.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/7.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fQ0VVCba75lknUHGldi3iTKAYUQqbzp1Un8+d9cm9nON0Gs8NAkXddNg8iaUB0qi/ybtAmNWizTR4avdkCJ9pQ==", + "path": "microsoft.identitymodel.tokens/7.7.1", + "hashPath": "microsoft.identitymodel.tokens.7.7.1.nupkg.sha512" + }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "path": "microsoft.sqlserver.server/1.0.0", + "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" + }, + "System.ClientModel/1.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k2jKSO0X45IqhVOT9iQB4xralNN9foRQsRvXBTyRpAVxyzCJlG895T9qYrQWbcJ6OQXxOouJQ37x5nZH5XKK+A==", + "path": "system.clientmodel/1.5.1", + "hashPath": "system.clientmodel.1.5.1.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/7.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rQkO1YbAjLwnDJSMpRhRtrc6XwIcEOcUvoEcge+evurpzSZM3UNK+MZfD3sKyTlYsvknZ6eJjSBfnmXqwOsT9Q==", + "path": "system.identitymodel.tokens.jwt/7.7.1", + "hashPath": "system.identitymodel.tokens.jwt.7.7.1.nupkg.sha512" + }, + "System.IO.Ports/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jMvwu+NOk/+vlOzTp9vpxIeGq+yRA+3EbkmpLMs37AAy9cI8YlY/ntTHL00w26Tvu6cIkx0/TdjmeHm0l99Nqw==", + "path": "system.io.ports/9.0.10", + "hashPath": "system.io.ports.9.0.10.nupkg.sha512" + }, + "System.Memory.Data/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BVYuec3jV23EMRDeR7Dr1/qhx7369dZzJ9IWy2xylvb4YfXsrUxspWc4UWYid/tj4zZK58uGZqn2WQiaDMhmAg==", + "path": "system.memory.data/8.0.1", + "hashPath": "system.memory.data.8.0.1.nupkg.sha512" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/publish/setup-win-x64/Housing.dll b/publish/setup-win-x64/Housing.dll new file mode 100644 index 0000000..7d7a74a Binary files /dev/null and b/publish/setup-win-x64/Housing.dll differ diff --git a/publish/setup-win-x64/Housing.exe b/publish/setup-win-x64/Housing.exe new file mode 100644 index 0000000..fe6c523 Binary files /dev/null and b/publish/setup-win-x64/Housing.exe differ diff --git a/publish/setup-win-x64/Housing.pdb b/publish/setup-win-x64/Housing.pdb new file mode 100644 index 0000000..f0d1e40 Binary files /dev/null and b/publish/setup-win-x64/Housing.pdb differ diff --git a/publish/setup-win-x64/Housing.runtimeconfig.json b/publish/setup-win-x64/Housing.runtimeconfig.json new file mode 100644 index 0000000..7023d2c --- /dev/null +++ b/publish/setup-win-x64/Housing.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "includedFrameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.17" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "9.0.17" + } + ], + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false, + "CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false + } + } +} \ No newline at end of file diff --git a/publish/setup-win-x64/Housing_voltage_current_icon_msi.ico b/publish/setup-win-x64/Housing_voltage_current_icon_msi.ico new file mode 100644 index 0000000..9236baf Binary files /dev/null and b/publish/setup-win-x64/Housing_voltage_current_icon_msi.ico differ diff --git a/publish/setup-win-x64/Housing_voltage_current_icon_msi_noborder.ico b/publish/setup-win-x64/Housing_voltage_current_icon_msi_noborder.ico new file mode 100644 index 0000000..df0075f Binary files /dev/null and b/publish/setup-win-x64/Housing_voltage_current_icon_msi_noborder.ico differ diff --git a/publish/setup-win-x64/InspectionSettings.ini b/publish/setup-win-x64/InspectionSettings.ini new file mode 100644 index 0000000..b781388 --- /dev/null +++ b/publish/setup-win-x64/InspectionSettings.ini @@ -0,0 +1,5 @@ +[Judgement] +VMin=0.00 +VMax=9.99 +AMin=0.00 +AMax=9.99 diff --git a/publish/setup-win-x64/Microsoft.Bcl.AsyncInterfaces.dll b/publish/setup-win-x64/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..421e812 Binary files /dev/null and b/publish/setup-win-x64/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/publish/setup-win-x64/Microsoft.Bcl.Cryptography.dll b/publish/setup-win-x64/Microsoft.Bcl.Cryptography.dll new file mode 100644 index 0000000..e0a506a Binary files /dev/null and b/publish/setup-win-x64/Microsoft.Bcl.Cryptography.dll differ diff --git a/publish/setup-win-x64/Microsoft.CSharp.dll b/publish/setup-win-x64/Microsoft.CSharp.dll new file mode 100644 index 0000000..f364bdf Binary files /dev/null and b/publish/setup-win-x64/Microsoft.CSharp.dll differ diff --git a/publish/setup-win-x64/Microsoft.Data.SqlClient.SNI.dll b/publish/setup-win-x64/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..a0083b1 Binary files /dev/null and b/publish/setup-win-x64/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/publish/setup-win-x64/Microsoft.Data.SqlClient.dll b/publish/setup-win-x64/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..00af6a9 Binary files /dev/null and b/publish/setup-win-x64/Microsoft.Data.SqlClient.dll differ diff --git a/publish/setup-win-x64/Microsoft.DiaSymReader.Native.amd64.dll b/publish/setup-win-x64/Microsoft.DiaSymReader.Native.amd64.dll new file mode 100644 index 0000000..92b355b Binary files /dev/null and b/publish/setup-win-x64/Microsoft.DiaSymReader.Native.amd64.dll differ diff --git a/publish/setup-win-x64/Microsoft.Extensions.Caching.Abstractions.dll b/publish/setup-win-x64/Microsoft.Extensions.Caching.Abstractions.dll new file mode 100644 index 0000000..bcc2d65 Binary files /dev/null and b/publish/setup-win-x64/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/publish/setup-win-x64/Microsoft.Extensions.Caching.Memory.dll b/publish/setup-win-x64/Microsoft.Extensions.Caching.Memory.dll new file mode 100644 index 0000000..5892a26 Binary files /dev/null and b/publish/setup-win-x64/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/publish/setup-win-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/publish/setup-win-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..0dbff05 Binary files /dev/null and b/publish/setup-win-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/publish/setup-win-x64/Microsoft.Extensions.Logging.Abstractions.dll b/publish/setup-win-x64/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..bef7508 Binary files /dev/null and b/publish/setup-win-x64/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/publish/setup-win-x64/Microsoft.Extensions.Options.dll b/publish/setup-win-x64/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..30da524 Binary files /dev/null and b/publish/setup-win-x64/Microsoft.Extensions.Options.dll differ diff --git a/publish/setup-win-x64/Microsoft.Extensions.Primitives.dll b/publish/setup-win-x64/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..ebf6eee Binary files /dev/null and b/publish/setup-win-x64/Microsoft.Extensions.Primitives.dll differ diff --git a/publish/setup-win-x64/Microsoft.Identity.Client.Extensions.Msal.dll b/publish/setup-win-x64/Microsoft.Identity.Client.Extensions.Msal.dll new file mode 100644 index 0000000..15201c7 Binary files /dev/null and b/publish/setup-win-x64/Microsoft.Identity.Client.Extensions.Msal.dll differ diff --git a/publish/setup-win-x64/Microsoft.Identity.Client.dll b/publish/setup-win-x64/Microsoft.Identity.Client.dll new file mode 100644 index 0000000..aa7367f Binary files /dev/null and b/publish/setup-win-x64/Microsoft.Identity.Client.dll differ diff --git a/publish/setup-win-x64/Microsoft.IdentityModel.Abstractions.dll b/publish/setup-win-x64/Microsoft.IdentityModel.Abstractions.dll new file mode 100644 index 0000000..eaeb3ad Binary files /dev/null and b/publish/setup-win-x64/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/publish/setup-win-x64/Microsoft.IdentityModel.JsonWebTokens.dll b/publish/setup-win-x64/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 0000000..bdeca82 Binary files /dev/null and b/publish/setup-win-x64/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/publish/setup-win-x64/Microsoft.IdentityModel.Logging.dll b/publish/setup-win-x64/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..ccfe9ff Binary files /dev/null and b/publish/setup-win-x64/Microsoft.IdentityModel.Logging.dll differ diff --git a/publish/setup-win-x64/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/publish/setup-win-x64/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 0000000..9c70235 Binary files /dev/null and b/publish/setup-win-x64/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/publish/setup-win-x64/Microsoft.IdentityModel.Protocols.dll b/publish/setup-win-x64/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 0000000..01432af Binary files /dev/null and b/publish/setup-win-x64/Microsoft.IdentityModel.Protocols.dll differ diff --git a/publish/setup-win-x64/Microsoft.IdentityModel.Tokens.dll b/publish/setup-win-x64/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..6fbb9ee Binary files /dev/null and b/publish/setup-win-x64/Microsoft.IdentityModel.Tokens.dll differ diff --git a/publish/setup-win-x64/Microsoft.SqlServer.Server.dll b/publish/setup-win-x64/Microsoft.SqlServer.Server.dll new file mode 100644 index 0000000..ddeaa86 Binary files /dev/null and b/publish/setup-win-x64/Microsoft.SqlServer.Server.dll differ diff --git a/publish/setup-win-x64/Microsoft.VisualBasic.Core.dll b/publish/setup-win-x64/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..8af701a Binary files /dev/null and b/publish/setup-win-x64/Microsoft.VisualBasic.Core.dll differ diff --git a/publish/setup-win-x64/Microsoft.VisualBasic.dll b/publish/setup-win-x64/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..d2286b6 Binary files /dev/null and b/publish/setup-win-x64/Microsoft.VisualBasic.dll differ diff --git a/publish/setup-win-x64/Microsoft.Win32.Primitives.dll b/publish/setup-win-x64/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..f5d557f Binary files /dev/null and b/publish/setup-win-x64/Microsoft.Win32.Primitives.dll differ diff --git a/publish/setup-win-x64/Microsoft.Win32.Registry.AccessControl.dll b/publish/setup-win-x64/Microsoft.Win32.Registry.AccessControl.dll new file mode 100644 index 0000000..81d0c06 Binary files /dev/null and b/publish/setup-win-x64/Microsoft.Win32.Registry.AccessControl.dll differ diff --git a/publish/setup-win-x64/Microsoft.Win32.Registry.dll b/publish/setup-win-x64/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..3277ee1 Binary files /dev/null and b/publish/setup-win-x64/Microsoft.Win32.Registry.dll differ diff --git a/publish/setup-win-x64/Microsoft.Win32.SystemEvents.dll b/publish/setup-win-x64/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..748c6a2 Binary files /dev/null and b/publish/setup-win-x64/Microsoft.Win32.SystemEvents.dll differ diff --git a/publish/setup-win-x64/PenImc_cor3.dll b/publish/setup-win-x64/PenImc_cor3.dll new file mode 100644 index 0000000..cad11e9 Binary files /dev/null and b/publish/setup-win-x64/PenImc_cor3.dll differ diff --git a/publish/setup-win-x64/PresentationCore.dll b/publish/setup-win-x64/PresentationCore.dll new file mode 100644 index 0000000..6c66e6a Binary files /dev/null and b/publish/setup-win-x64/PresentationCore.dll differ diff --git a/publish/setup-win-x64/PresentationFramework-SystemCore.dll b/publish/setup-win-x64/PresentationFramework-SystemCore.dll new file mode 100644 index 0000000..dfb3e26 Binary files /dev/null and b/publish/setup-win-x64/PresentationFramework-SystemCore.dll differ diff --git a/publish/setup-win-x64/PresentationFramework-SystemData.dll b/publish/setup-win-x64/PresentationFramework-SystemData.dll new file mode 100644 index 0000000..86d217f Binary files /dev/null and b/publish/setup-win-x64/PresentationFramework-SystemData.dll differ diff --git a/publish/setup-win-x64/PresentationFramework-SystemDrawing.dll b/publish/setup-win-x64/PresentationFramework-SystemDrawing.dll new file mode 100644 index 0000000..f1a6504 Binary files /dev/null and b/publish/setup-win-x64/PresentationFramework-SystemDrawing.dll differ diff --git a/publish/setup-win-x64/PresentationFramework-SystemXml.dll b/publish/setup-win-x64/PresentationFramework-SystemXml.dll new file mode 100644 index 0000000..adf29fa Binary files /dev/null and b/publish/setup-win-x64/PresentationFramework-SystemXml.dll differ diff --git a/publish/setup-win-x64/PresentationFramework-SystemXmlLinq.dll b/publish/setup-win-x64/PresentationFramework-SystemXmlLinq.dll new file mode 100644 index 0000000..10ab576 Binary files /dev/null and b/publish/setup-win-x64/PresentationFramework-SystemXmlLinq.dll differ diff --git a/publish/setup-win-x64/PresentationFramework.Aero.dll b/publish/setup-win-x64/PresentationFramework.Aero.dll new file mode 100644 index 0000000..781919a Binary files /dev/null and b/publish/setup-win-x64/PresentationFramework.Aero.dll differ diff --git a/publish/setup-win-x64/PresentationFramework.Aero2.dll b/publish/setup-win-x64/PresentationFramework.Aero2.dll new file mode 100644 index 0000000..db09794 Binary files /dev/null and b/publish/setup-win-x64/PresentationFramework.Aero2.dll differ diff --git a/publish/setup-win-x64/PresentationFramework.AeroLite.dll b/publish/setup-win-x64/PresentationFramework.AeroLite.dll new file mode 100644 index 0000000..2a27d38 Binary files /dev/null and b/publish/setup-win-x64/PresentationFramework.AeroLite.dll differ diff --git a/publish/setup-win-x64/PresentationFramework.Classic.dll b/publish/setup-win-x64/PresentationFramework.Classic.dll new file mode 100644 index 0000000..77ebeed Binary files /dev/null and b/publish/setup-win-x64/PresentationFramework.Classic.dll differ diff --git a/publish/setup-win-x64/PresentationFramework.Fluent.dll b/publish/setup-win-x64/PresentationFramework.Fluent.dll new file mode 100644 index 0000000..55f962f Binary files /dev/null and b/publish/setup-win-x64/PresentationFramework.Fluent.dll differ diff --git a/publish/setup-win-x64/PresentationFramework.Luna.dll b/publish/setup-win-x64/PresentationFramework.Luna.dll new file mode 100644 index 0000000..3ab2ca7 Binary files /dev/null and b/publish/setup-win-x64/PresentationFramework.Luna.dll differ diff --git a/publish/setup-win-x64/PresentationFramework.Royale.dll b/publish/setup-win-x64/PresentationFramework.Royale.dll new file mode 100644 index 0000000..4f50320 Binary files /dev/null and b/publish/setup-win-x64/PresentationFramework.Royale.dll differ diff --git a/publish/setup-win-x64/PresentationFramework.dll b/publish/setup-win-x64/PresentationFramework.dll new file mode 100644 index 0000000..6fcc56c Binary files /dev/null and b/publish/setup-win-x64/PresentationFramework.dll differ diff --git a/publish/setup-win-x64/PresentationNative_cor3.dll b/publish/setup-win-x64/PresentationNative_cor3.dll new file mode 100644 index 0000000..73524ab Binary files /dev/null and b/publish/setup-win-x64/PresentationNative_cor3.dll differ diff --git a/publish/setup-win-x64/PresentationUI.dll b/publish/setup-win-x64/PresentationUI.dll new file mode 100644 index 0000000..d5494d6 Binary files /dev/null and b/publish/setup-win-x64/PresentationUI.dll differ diff --git a/publish/setup-win-x64/ReachFramework.dll b/publish/setup-win-x64/ReachFramework.dll new file mode 100644 index 0000000..cafc375 Binary files /dev/null and b/publish/setup-win-x64/ReachFramework.dll differ diff --git a/publish/setup-win-x64/System.AppContext.dll b/publish/setup-win-x64/System.AppContext.dll new file mode 100644 index 0000000..2619837 Binary files /dev/null and b/publish/setup-win-x64/System.AppContext.dll differ diff --git a/publish/setup-win-x64/System.Buffers.dll b/publish/setup-win-x64/System.Buffers.dll new file mode 100644 index 0000000..b5576f8 Binary files /dev/null and b/publish/setup-win-x64/System.Buffers.dll differ diff --git a/publish/setup-win-x64/System.ClientModel.dll b/publish/setup-win-x64/System.ClientModel.dll new file mode 100644 index 0000000..0caead2 Binary files /dev/null and b/publish/setup-win-x64/System.ClientModel.dll differ diff --git a/publish/setup-win-x64/System.CodeDom.dll b/publish/setup-win-x64/System.CodeDom.dll new file mode 100644 index 0000000..19a9c0a Binary files /dev/null and b/publish/setup-win-x64/System.CodeDom.dll differ diff --git a/publish/setup-win-x64/System.Collections.Concurrent.dll b/publish/setup-win-x64/System.Collections.Concurrent.dll new file mode 100644 index 0000000..5a51692 Binary files /dev/null and b/publish/setup-win-x64/System.Collections.Concurrent.dll differ diff --git a/publish/setup-win-x64/System.Collections.Immutable.dll b/publish/setup-win-x64/System.Collections.Immutable.dll new file mode 100644 index 0000000..21a74c5 Binary files /dev/null and b/publish/setup-win-x64/System.Collections.Immutable.dll differ diff --git a/publish/setup-win-x64/System.Collections.NonGeneric.dll b/publish/setup-win-x64/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..53ee290 Binary files /dev/null and b/publish/setup-win-x64/System.Collections.NonGeneric.dll differ diff --git a/publish/setup-win-x64/System.Collections.Specialized.dll b/publish/setup-win-x64/System.Collections.Specialized.dll new file mode 100644 index 0000000..cb440c1 Binary files /dev/null and b/publish/setup-win-x64/System.Collections.Specialized.dll differ diff --git a/publish/setup-win-x64/System.Collections.dll b/publish/setup-win-x64/System.Collections.dll new file mode 100644 index 0000000..720b16e Binary files /dev/null and b/publish/setup-win-x64/System.Collections.dll differ diff --git a/publish/setup-win-x64/System.ComponentModel.Annotations.dll b/publish/setup-win-x64/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..4b93dbe Binary files /dev/null and b/publish/setup-win-x64/System.ComponentModel.Annotations.dll differ diff --git a/publish/setup-win-x64/System.ComponentModel.DataAnnotations.dll b/publish/setup-win-x64/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..399ceeb Binary files /dev/null and b/publish/setup-win-x64/System.ComponentModel.DataAnnotations.dll differ diff --git a/publish/setup-win-x64/System.ComponentModel.EventBasedAsync.dll b/publish/setup-win-x64/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..fa23688 Binary files /dev/null and b/publish/setup-win-x64/System.ComponentModel.EventBasedAsync.dll differ diff --git a/publish/setup-win-x64/System.ComponentModel.Primitives.dll b/publish/setup-win-x64/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..8cea50a Binary files /dev/null and b/publish/setup-win-x64/System.ComponentModel.Primitives.dll differ diff --git a/publish/setup-win-x64/System.ComponentModel.TypeConverter.dll b/publish/setup-win-x64/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..45eebb9 Binary files /dev/null and b/publish/setup-win-x64/System.ComponentModel.TypeConverter.dll differ diff --git a/publish/setup-win-x64/System.ComponentModel.dll b/publish/setup-win-x64/System.ComponentModel.dll new file mode 100644 index 0000000..c61344c Binary files /dev/null and b/publish/setup-win-x64/System.ComponentModel.dll differ diff --git a/publish/setup-win-x64/System.Configuration.ConfigurationManager.dll b/publish/setup-win-x64/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..4c8f97f Binary files /dev/null and b/publish/setup-win-x64/System.Configuration.ConfigurationManager.dll differ diff --git a/publish/setup-win-x64/System.Configuration.dll b/publish/setup-win-x64/System.Configuration.dll new file mode 100644 index 0000000..956d719 Binary files /dev/null and b/publish/setup-win-x64/System.Configuration.dll differ diff --git a/publish/setup-win-x64/System.Console.dll b/publish/setup-win-x64/System.Console.dll new file mode 100644 index 0000000..ba0eb67 Binary files /dev/null and b/publish/setup-win-x64/System.Console.dll differ diff --git a/publish/setup-win-x64/System.Core.dll b/publish/setup-win-x64/System.Core.dll new file mode 100644 index 0000000..9be45f3 Binary files /dev/null and b/publish/setup-win-x64/System.Core.dll differ diff --git a/publish/setup-win-x64/System.Data.Common.dll b/publish/setup-win-x64/System.Data.Common.dll new file mode 100644 index 0000000..54cd27a Binary files /dev/null and b/publish/setup-win-x64/System.Data.Common.dll differ diff --git a/publish/setup-win-x64/System.Data.DataSetExtensions.dll b/publish/setup-win-x64/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..74abe99 Binary files /dev/null and b/publish/setup-win-x64/System.Data.DataSetExtensions.dll differ diff --git a/publish/setup-win-x64/System.Data.dll b/publish/setup-win-x64/System.Data.dll new file mode 100644 index 0000000..198c16c Binary files /dev/null and b/publish/setup-win-x64/System.Data.dll differ diff --git a/publish/setup-win-x64/System.Diagnostics.Contracts.dll b/publish/setup-win-x64/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..a0c058b Binary files /dev/null and b/publish/setup-win-x64/System.Diagnostics.Contracts.dll differ diff --git a/publish/setup-win-x64/System.Diagnostics.Debug.dll b/publish/setup-win-x64/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..a258a24 Binary files /dev/null and b/publish/setup-win-x64/System.Diagnostics.Debug.dll differ diff --git a/publish/setup-win-x64/System.Diagnostics.DiagnosticSource.dll b/publish/setup-win-x64/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..136e902 Binary files /dev/null and b/publish/setup-win-x64/System.Diagnostics.DiagnosticSource.dll differ diff --git a/publish/setup-win-x64/System.Diagnostics.EventLog.Messages.dll b/publish/setup-win-x64/System.Diagnostics.EventLog.Messages.dll new file mode 100644 index 0000000..de7c7af Binary files /dev/null and b/publish/setup-win-x64/System.Diagnostics.EventLog.Messages.dll differ diff --git a/publish/setup-win-x64/System.Diagnostics.EventLog.dll b/publish/setup-win-x64/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..d820328 Binary files /dev/null and b/publish/setup-win-x64/System.Diagnostics.EventLog.dll differ diff --git a/publish/setup-win-x64/System.Diagnostics.FileVersionInfo.dll b/publish/setup-win-x64/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..5e59e5b Binary files /dev/null and b/publish/setup-win-x64/System.Diagnostics.FileVersionInfo.dll differ diff --git a/publish/setup-win-x64/System.Diagnostics.PerformanceCounter.dll b/publish/setup-win-x64/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..44bff46 Binary files /dev/null and b/publish/setup-win-x64/System.Diagnostics.PerformanceCounter.dll differ diff --git a/publish/setup-win-x64/System.Diagnostics.Process.dll b/publish/setup-win-x64/System.Diagnostics.Process.dll new file mode 100644 index 0000000..32fe9ff Binary files /dev/null and b/publish/setup-win-x64/System.Diagnostics.Process.dll differ diff --git a/publish/setup-win-x64/System.Diagnostics.StackTrace.dll b/publish/setup-win-x64/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..a221a64 Binary files /dev/null and b/publish/setup-win-x64/System.Diagnostics.StackTrace.dll differ diff --git a/publish/setup-win-x64/System.Diagnostics.TextWriterTraceListener.dll b/publish/setup-win-x64/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..bc3d891 Binary files /dev/null and b/publish/setup-win-x64/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/publish/setup-win-x64/System.Diagnostics.Tools.dll b/publish/setup-win-x64/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..bbfc53b Binary files /dev/null and b/publish/setup-win-x64/System.Diagnostics.Tools.dll differ diff --git a/publish/setup-win-x64/System.Diagnostics.TraceSource.dll b/publish/setup-win-x64/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..310dd38 Binary files /dev/null and b/publish/setup-win-x64/System.Diagnostics.TraceSource.dll differ diff --git a/publish/setup-win-x64/System.Diagnostics.Tracing.dll b/publish/setup-win-x64/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..3a75eb3 Binary files /dev/null and b/publish/setup-win-x64/System.Diagnostics.Tracing.dll differ diff --git a/publish/setup-win-x64/System.DirectoryServices.dll b/publish/setup-win-x64/System.DirectoryServices.dll new file mode 100644 index 0000000..dcaddf1 Binary files /dev/null and b/publish/setup-win-x64/System.DirectoryServices.dll differ diff --git a/publish/setup-win-x64/System.Drawing.Primitives.dll b/publish/setup-win-x64/System.Drawing.Primitives.dll new file mode 100644 index 0000000..a973a80 Binary files /dev/null and b/publish/setup-win-x64/System.Drawing.Primitives.dll differ diff --git a/publish/setup-win-x64/System.Drawing.dll b/publish/setup-win-x64/System.Drawing.dll new file mode 100644 index 0000000..508ca84 Binary files /dev/null and b/publish/setup-win-x64/System.Drawing.dll differ diff --git a/publish/setup-win-x64/System.Dynamic.Runtime.dll b/publish/setup-win-x64/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..40258a8 Binary files /dev/null and b/publish/setup-win-x64/System.Dynamic.Runtime.dll differ diff --git a/publish/setup-win-x64/System.Formats.Asn1.dll b/publish/setup-win-x64/System.Formats.Asn1.dll new file mode 100644 index 0000000..99047ae Binary files /dev/null and b/publish/setup-win-x64/System.Formats.Asn1.dll differ diff --git a/publish/setup-win-x64/System.Formats.Nrbf.dll b/publish/setup-win-x64/System.Formats.Nrbf.dll new file mode 100644 index 0000000..263e9f8 Binary files /dev/null and b/publish/setup-win-x64/System.Formats.Nrbf.dll differ diff --git a/publish/setup-win-x64/System.Formats.Tar.dll b/publish/setup-win-x64/System.Formats.Tar.dll new file mode 100644 index 0000000..7d22d6d Binary files /dev/null and b/publish/setup-win-x64/System.Formats.Tar.dll differ diff --git a/publish/setup-win-x64/System.Globalization.Calendars.dll b/publish/setup-win-x64/System.Globalization.Calendars.dll new file mode 100644 index 0000000..53c8291 Binary files /dev/null and b/publish/setup-win-x64/System.Globalization.Calendars.dll differ diff --git a/publish/setup-win-x64/System.Globalization.Extensions.dll b/publish/setup-win-x64/System.Globalization.Extensions.dll new file mode 100644 index 0000000..100c55e Binary files /dev/null and b/publish/setup-win-x64/System.Globalization.Extensions.dll differ diff --git a/publish/setup-win-x64/System.Globalization.dll b/publish/setup-win-x64/System.Globalization.dll new file mode 100644 index 0000000..d4c7893 Binary files /dev/null and b/publish/setup-win-x64/System.Globalization.dll differ diff --git a/publish/setup-win-x64/System.IO.Compression.Brotli.dll b/publish/setup-win-x64/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..f9742b5 Binary files /dev/null and b/publish/setup-win-x64/System.IO.Compression.Brotli.dll differ diff --git a/publish/setup-win-x64/System.IO.Compression.FileSystem.dll b/publish/setup-win-x64/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..6e884ca Binary files /dev/null and b/publish/setup-win-x64/System.IO.Compression.FileSystem.dll differ diff --git a/publish/setup-win-x64/System.IO.Compression.Native.dll b/publish/setup-win-x64/System.IO.Compression.Native.dll new file mode 100644 index 0000000..a635852 Binary files /dev/null and b/publish/setup-win-x64/System.IO.Compression.Native.dll differ diff --git a/publish/setup-win-x64/System.IO.Compression.ZipFile.dll b/publish/setup-win-x64/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..149dd2e Binary files /dev/null and b/publish/setup-win-x64/System.IO.Compression.ZipFile.dll differ diff --git a/publish/setup-win-x64/System.IO.Compression.dll b/publish/setup-win-x64/System.IO.Compression.dll new file mode 100644 index 0000000..519c34f Binary files /dev/null and b/publish/setup-win-x64/System.IO.Compression.dll differ diff --git a/publish/setup-win-x64/System.IO.FileSystem.AccessControl.dll b/publish/setup-win-x64/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..9d0c83b Binary files /dev/null and b/publish/setup-win-x64/System.IO.FileSystem.AccessControl.dll differ diff --git a/publish/setup-win-x64/System.IO.FileSystem.DriveInfo.dll b/publish/setup-win-x64/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..473ea28 Binary files /dev/null and b/publish/setup-win-x64/System.IO.FileSystem.DriveInfo.dll differ diff --git a/publish/setup-win-x64/System.IO.FileSystem.Primitives.dll b/publish/setup-win-x64/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..9b60e61 Binary files /dev/null and b/publish/setup-win-x64/System.IO.FileSystem.Primitives.dll differ diff --git a/publish/setup-win-x64/System.IO.FileSystem.Watcher.dll b/publish/setup-win-x64/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..a00723a Binary files /dev/null and b/publish/setup-win-x64/System.IO.FileSystem.Watcher.dll differ diff --git a/publish/setup-win-x64/System.IO.FileSystem.dll b/publish/setup-win-x64/System.IO.FileSystem.dll new file mode 100644 index 0000000..333ae1c Binary files /dev/null and b/publish/setup-win-x64/System.IO.FileSystem.dll differ diff --git a/publish/setup-win-x64/System.IO.IsolatedStorage.dll b/publish/setup-win-x64/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..846b4f7 Binary files /dev/null and b/publish/setup-win-x64/System.IO.IsolatedStorage.dll differ diff --git a/publish/setup-win-x64/System.IO.MemoryMappedFiles.dll b/publish/setup-win-x64/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..06915ab Binary files /dev/null and b/publish/setup-win-x64/System.IO.MemoryMappedFiles.dll differ diff --git a/publish/setup-win-x64/System.IO.Packaging.dll b/publish/setup-win-x64/System.IO.Packaging.dll new file mode 100644 index 0000000..a46169a Binary files /dev/null and b/publish/setup-win-x64/System.IO.Packaging.dll differ diff --git a/publish/setup-win-x64/System.IO.Pipelines.dll b/publish/setup-win-x64/System.IO.Pipelines.dll new file mode 100644 index 0000000..efec837 Binary files /dev/null and b/publish/setup-win-x64/System.IO.Pipelines.dll differ diff --git a/publish/setup-win-x64/System.IO.Pipes.AccessControl.dll b/publish/setup-win-x64/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..c5a03ec Binary files /dev/null and b/publish/setup-win-x64/System.IO.Pipes.AccessControl.dll differ diff --git a/publish/setup-win-x64/System.IO.Pipes.dll b/publish/setup-win-x64/System.IO.Pipes.dll new file mode 100644 index 0000000..99dd97d Binary files /dev/null and b/publish/setup-win-x64/System.IO.Pipes.dll differ diff --git a/publish/setup-win-x64/System.IO.Ports.dll b/publish/setup-win-x64/System.IO.Ports.dll new file mode 100644 index 0000000..ba7dacd Binary files /dev/null and b/publish/setup-win-x64/System.IO.Ports.dll differ diff --git a/publish/setup-win-x64/System.IO.UnmanagedMemoryStream.dll b/publish/setup-win-x64/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..37c681a Binary files /dev/null and b/publish/setup-win-x64/System.IO.UnmanagedMemoryStream.dll differ diff --git a/publish/setup-win-x64/System.IO.dll b/publish/setup-win-x64/System.IO.dll new file mode 100644 index 0000000..55859fa Binary files /dev/null and b/publish/setup-win-x64/System.IO.dll differ diff --git a/publish/setup-win-x64/System.IdentityModel.Tokens.Jwt.dll b/publish/setup-win-x64/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 0000000..c2d8ecb Binary files /dev/null and b/publish/setup-win-x64/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/publish/setup-win-x64/System.Linq.Expressions.dll b/publish/setup-win-x64/System.Linq.Expressions.dll new file mode 100644 index 0000000..13eb386 Binary files /dev/null and b/publish/setup-win-x64/System.Linq.Expressions.dll differ diff --git a/publish/setup-win-x64/System.Linq.Parallel.dll b/publish/setup-win-x64/System.Linq.Parallel.dll new file mode 100644 index 0000000..e1150ef Binary files /dev/null and b/publish/setup-win-x64/System.Linq.Parallel.dll differ diff --git a/publish/setup-win-x64/System.Linq.Queryable.dll b/publish/setup-win-x64/System.Linq.Queryable.dll new file mode 100644 index 0000000..f11b7ce Binary files /dev/null and b/publish/setup-win-x64/System.Linq.Queryable.dll differ diff --git a/publish/setup-win-x64/System.Linq.dll b/publish/setup-win-x64/System.Linq.dll new file mode 100644 index 0000000..abe701e Binary files /dev/null and b/publish/setup-win-x64/System.Linq.dll differ diff --git a/publish/setup-win-x64/System.Memory.Data.dll b/publish/setup-win-x64/System.Memory.Data.dll new file mode 100644 index 0000000..9282c37 Binary files /dev/null and b/publish/setup-win-x64/System.Memory.Data.dll differ diff --git a/publish/setup-win-x64/System.Memory.dll b/publish/setup-win-x64/System.Memory.dll new file mode 100644 index 0000000..82b867e Binary files /dev/null and b/publish/setup-win-x64/System.Memory.dll differ diff --git a/publish/setup-win-x64/System.Net.Http.Json.dll b/publish/setup-win-x64/System.Net.Http.Json.dll new file mode 100644 index 0000000..2407078 Binary files /dev/null and b/publish/setup-win-x64/System.Net.Http.Json.dll differ diff --git a/publish/setup-win-x64/System.Net.Http.dll b/publish/setup-win-x64/System.Net.Http.dll new file mode 100644 index 0000000..9a2245e Binary files /dev/null and b/publish/setup-win-x64/System.Net.Http.dll differ diff --git a/publish/setup-win-x64/System.Net.HttpListener.dll b/publish/setup-win-x64/System.Net.HttpListener.dll new file mode 100644 index 0000000..2cf3dc9 Binary files /dev/null and b/publish/setup-win-x64/System.Net.HttpListener.dll differ diff --git a/publish/setup-win-x64/System.Net.Mail.dll b/publish/setup-win-x64/System.Net.Mail.dll new file mode 100644 index 0000000..6902689 Binary files /dev/null and b/publish/setup-win-x64/System.Net.Mail.dll differ diff --git a/publish/setup-win-x64/System.Net.NameResolution.dll b/publish/setup-win-x64/System.Net.NameResolution.dll new file mode 100644 index 0000000..fd846c5 Binary files /dev/null and b/publish/setup-win-x64/System.Net.NameResolution.dll differ diff --git a/publish/setup-win-x64/System.Net.NetworkInformation.dll b/publish/setup-win-x64/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..c2b560c Binary files /dev/null and b/publish/setup-win-x64/System.Net.NetworkInformation.dll differ diff --git a/publish/setup-win-x64/System.Net.Ping.dll b/publish/setup-win-x64/System.Net.Ping.dll new file mode 100644 index 0000000..efa5d81 Binary files /dev/null and b/publish/setup-win-x64/System.Net.Ping.dll differ diff --git a/publish/setup-win-x64/System.Net.Primitives.dll b/publish/setup-win-x64/System.Net.Primitives.dll new file mode 100644 index 0000000..4c3ff4c Binary files /dev/null and b/publish/setup-win-x64/System.Net.Primitives.dll differ diff --git a/publish/setup-win-x64/System.Net.Quic.dll b/publish/setup-win-x64/System.Net.Quic.dll new file mode 100644 index 0000000..5b95b5c Binary files /dev/null and b/publish/setup-win-x64/System.Net.Quic.dll differ diff --git a/publish/setup-win-x64/System.Net.Requests.dll b/publish/setup-win-x64/System.Net.Requests.dll new file mode 100644 index 0000000..adb5d4e Binary files /dev/null and b/publish/setup-win-x64/System.Net.Requests.dll differ diff --git a/publish/setup-win-x64/System.Net.Security.dll b/publish/setup-win-x64/System.Net.Security.dll new file mode 100644 index 0000000..f37fde1 Binary files /dev/null and b/publish/setup-win-x64/System.Net.Security.dll differ diff --git a/publish/setup-win-x64/System.Net.ServicePoint.dll b/publish/setup-win-x64/System.Net.ServicePoint.dll new file mode 100644 index 0000000..e0d7e9a Binary files /dev/null and b/publish/setup-win-x64/System.Net.ServicePoint.dll differ diff --git a/publish/setup-win-x64/System.Net.Sockets.dll b/publish/setup-win-x64/System.Net.Sockets.dll new file mode 100644 index 0000000..b8fb2c9 Binary files /dev/null and b/publish/setup-win-x64/System.Net.Sockets.dll differ diff --git a/publish/setup-win-x64/System.Net.WebClient.dll b/publish/setup-win-x64/System.Net.WebClient.dll new file mode 100644 index 0000000..ca5cd90 Binary files /dev/null and b/publish/setup-win-x64/System.Net.WebClient.dll differ diff --git a/publish/setup-win-x64/System.Net.WebHeaderCollection.dll b/publish/setup-win-x64/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..4856192 Binary files /dev/null and b/publish/setup-win-x64/System.Net.WebHeaderCollection.dll differ diff --git a/publish/setup-win-x64/System.Net.WebProxy.dll b/publish/setup-win-x64/System.Net.WebProxy.dll new file mode 100644 index 0000000..4f6559f Binary files /dev/null and b/publish/setup-win-x64/System.Net.WebProxy.dll differ diff --git a/publish/setup-win-x64/System.Net.WebSockets.Client.dll b/publish/setup-win-x64/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..594a415 Binary files /dev/null and b/publish/setup-win-x64/System.Net.WebSockets.Client.dll differ diff --git a/publish/setup-win-x64/System.Net.WebSockets.dll b/publish/setup-win-x64/System.Net.WebSockets.dll new file mode 100644 index 0000000..a83b326 Binary files /dev/null and b/publish/setup-win-x64/System.Net.WebSockets.dll differ diff --git a/publish/setup-win-x64/System.Net.dll b/publish/setup-win-x64/System.Net.dll new file mode 100644 index 0000000..e2eb39d Binary files /dev/null and b/publish/setup-win-x64/System.Net.dll differ diff --git a/publish/setup-win-x64/System.Numerics.Vectors.dll b/publish/setup-win-x64/System.Numerics.Vectors.dll new file mode 100644 index 0000000..d5f9c9c Binary files /dev/null and b/publish/setup-win-x64/System.Numerics.Vectors.dll differ diff --git a/publish/setup-win-x64/System.Numerics.dll b/publish/setup-win-x64/System.Numerics.dll new file mode 100644 index 0000000..872c6e6 Binary files /dev/null and b/publish/setup-win-x64/System.Numerics.dll differ diff --git a/publish/setup-win-x64/System.ObjectModel.dll b/publish/setup-win-x64/System.ObjectModel.dll new file mode 100644 index 0000000..9316209 Binary files /dev/null and b/publish/setup-win-x64/System.ObjectModel.dll differ diff --git a/publish/setup-win-x64/System.Printing.dll b/publish/setup-win-x64/System.Printing.dll new file mode 100644 index 0000000..4c518a1 Binary files /dev/null and b/publish/setup-win-x64/System.Printing.dll differ diff --git a/publish/setup-win-x64/System.Private.CoreLib.dll b/publish/setup-win-x64/System.Private.CoreLib.dll new file mode 100644 index 0000000..eed142c Binary files /dev/null and b/publish/setup-win-x64/System.Private.CoreLib.dll differ diff --git a/publish/setup-win-x64/System.Private.DataContractSerialization.dll b/publish/setup-win-x64/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..651e673 Binary files /dev/null and b/publish/setup-win-x64/System.Private.DataContractSerialization.dll differ diff --git a/publish/setup-win-x64/System.Private.Uri.dll b/publish/setup-win-x64/System.Private.Uri.dll new file mode 100644 index 0000000..7f84072 Binary files /dev/null and b/publish/setup-win-x64/System.Private.Uri.dll differ diff --git a/publish/setup-win-x64/System.Private.Xml.Linq.dll b/publish/setup-win-x64/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..80936df Binary files /dev/null and b/publish/setup-win-x64/System.Private.Xml.Linq.dll differ diff --git a/publish/setup-win-x64/System.Private.Xml.dll b/publish/setup-win-x64/System.Private.Xml.dll new file mode 100644 index 0000000..4376c97 Binary files /dev/null and b/publish/setup-win-x64/System.Private.Xml.dll differ diff --git a/publish/setup-win-x64/System.Reflection.DispatchProxy.dll b/publish/setup-win-x64/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..5b20b72 Binary files /dev/null and b/publish/setup-win-x64/System.Reflection.DispatchProxy.dll differ diff --git a/publish/setup-win-x64/System.Reflection.Emit.ILGeneration.dll b/publish/setup-win-x64/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..e73b3de Binary files /dev/null and b/publish/setup-win-x64/System.Reflection.Emit.ILGeneration.dll differ diff --git a/publish/setup-win-x64/System.Reflection.Emit.Lightweight.dll b/publish/setup-win-x64/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..a05d920 Binary files /dev/null and b/publish/setup-win-x64/System.Reflection.Emit.Lightweight.dll differ diff --git a/publish/setup-win-x64/System.Reflection.Emit.dll b/publish/setup-win-x64/System.Reflection.Emit.dll new file mode 100644 index 0000000..441f815 Binary files /dev/null and b/publish/setup-win-x64/System.Reflection.Emit.dll differ diff --git a/publish/setup-win-x64/System.Reflection.Extensions.dll b/publish/setup-win-x64/System.Reflection.Extensions.dll new file mode 100644 index 0000000..5c2a446 Binary files /dev/null and b/publish/setup-win-x64/System.Reflection.Extensions.dll differ diff --git a/publish/setup-win-x64/System.Reflection.Metadata.dll b/publish/setup-win-x64/System.Reflection.Metadata.dll new file mode 100644 index 0000000..fc3c3f6 Binary files /dev/null and b/publish/setup-win-x64/System.Reflection.Metadata.dll differ diff --git a/publish/setup-win-x64/System.Reflection.Primitives.dll b/publish/setup-win-x64/System.Reflection.Primitives.dll new file mode 100644 index 0000000..971bb47 Binary files /dev/null and b/publish/setup-win-x64/System.Reflection.Primitives.dll differ diff --git a/publish/setup-win-x64/System.Reflection.TypeExtensions.dll b/publish/setup-win-x64/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..7e1dd2a Binary files /dev/null and b/publish/setup-win-x64/System.Reflection.TypeExtensions.dll differ diff --git a/publish/setup-win-x64/System.Reflection.dll b/publish/setup-win-x64/System.Reflection.dll new file mode 100644 index 0000000..815fc03 Binary files /dev/null and b/publish/setup-win-x64/System.Reflection.dll differ diff --git a/publish/setup-win-x64/System.Resources.Extensions.dll b/publish/setup-win-x64/System.Resources.Extensions.dll new file mode 100644 index 0000000..d1e2563 Binary files /dev/null and b/publish/setup-win-x64/System.Resources.Extensions.dll differ diff --git a/publish/setup-win-x64/System.Resources.Reader.dll b/publish/setup-win-x64/System.Resources.Reader.dll new file mode 100644 index 0000000..7a5b724 Binary files /dev/null and b/publish/setup-win-x64/System.Resources.Reader.dll differ diff --git a/publish/setup-win-x64/System.Resources.ResourceManager.dll b/publish/setup-win-x64/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..9102b3b Binary files /dev/null and b/publish/setup-win-x64/System.Resources.ResourceManager.dll differ diff --git a/publish/setup-win-x64/System.Resources.Writer.dll b/publish/setup-win-x64/System.Resources.Writer.dll new file mode 100644 index 0000000..b67fc6f Binary files /dev/null and b/publish/setup-win-x64/System.Resources.Writer.dll differ diff --git a/publish/setup-win-x64/System.Runtime.CompilerServices.Unsafe.dll b/publish/setup-win-x64/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..2f59c5e Binary files /dev/null and b/publish/setup-win-x64/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/publish/setup-win-x64/System.Runtime.CompilerServices.VisualC.dll b/publish/setup-win-x64/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..c884fe0 Binary files /dev/null and b/publish/setup-win-x64/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/publish/setup-win-x64/System.Runtime.Extensions.dll b/publish/setup-win-x64/System.Runtime.Extensions.dll new file mode 100644 index 0000000..2e7f0a9 Binary files /dev/null and b/publish/setup-win-x64/System.Runtime.Extensions.dll differ diff --git a/publish/setup-win-x64/System.Runtime.Handles.dll b/publish/setup-win-x64/System.Runtime.Handles.dll new file mode 100644 index 0000000..285c59d Binary files /dev/null and b/publish/setup-win-x64/System.Runtime.Handles.dll differ diff --git a/publish/setup-win-x64/System.Runtime.InteropServices.JavaScript.dll b/publish/setup-win-x64/System.Runtime.InteropServices.JavaScript.dll new file mode 100644 index 0000000..862b0cc Binary files /dev/null and b/publish/setup-win-x64/System.Runtime.InteropServices.JavaScript.dll differ diff --git a/publish/setup-win-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/publish/setup-win-x64/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..d7f6f2d Binary files /dev/null and b/publish/setup-win-x64/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/publish/setup-win-x64/System.Runtime.InteropServices.dll b/publish/setup-win-x64/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..225e9d1 Binary files /dev/null and b/publish/setup-win-x64/System.Runtime.InteropServices.dll differ diff --git a/publish/setup-win-x64/System.Runtime.Intrinsics.dll b/publish/setup-win-x64/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..2d8abe6 Binary files /dev/null and b/publish/setup-win-x64/System.Runtime.Intrinsics.dll differ diff --git a/publish/setup-win-x64/System.Runtime.Loader.dll b/publish/setup-win-x64/System.Runtime.Loader.dll new file mode 100644 index 0000000..d1d6ac5 Binary files /dev/null and b/publish/setup-win-x64/System.Runtime.Loader.dll differ diff --git a/publish/setup-win-x64/System.Runtime.Numerics.dll b/publish/setup-win-x64/System.Runtime.Numerics.dll new file mode 100644 index 0000000..5a513df Binary files /dev/null and b/publish/setup-win-x64/System.Runtime.Numerics.dll differ diff --git a/publish/setup-win-x64/System.Runtime.Serialization.Formatters.dll b/publish/setup-win-x64/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..7b41427 Binary files /dev/null and b/publish/setup-win-x64/System.Runtime.Serialization.Formatters.dll differ diff --git a/publish/setup-win-x64/System.Runtime.Serialization.Json.dll b/publish/setup-win-x64/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..ee033d5 Binary files /dev/null and b/publish/setup-win-x64/System.Runtime.Serialization.Json.dll differ diff --git a/publish/setup-win-x64/System.Runtime.Serialization.Primitives.dll b/publish/setup-win-x64/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..8db2dd1 Binary files /dev/null and b/publish/setup-win-x64/System.Runtime.Serialization.Primitives.dll differ diff --git a/publish/setup-win-x64/System.Runtime.Serialization.Xml.dll b/publish/setup-win-x64/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..e389c12 Binary files /dev/null and b/publish/setup-win-x64/System.Runtime.Serialization.Xml.dll differ diff --git a/publish/setup-win-x64/System.Runtime.Serialization.dll b/publish/setup-win-x64/System.Runtime.Serialization.dll new file mode 100644 index 0000000..bf16759 Binary files /dev/null and b/publish/setup-win-x64/System.Runtime.Serialization.dll differ diff --git a/publish/setup-win-x64/System.Runtime.dll b/publish/setup-win-x64/System.Runtime.dll new file mode 100644 index 0000000..398def5 Binary files /dev/null and b/publish/setup-win-x64/System.Runtime.dll differ diff --git a/publish/setup-win-x64/System.Security.AccessControl.dll b/publish/setup-win-x64/System.Security.AccessControl.dll new file mode 100644 index 0000000..3d3717f Binary files /dev/null and b/publish/setup-win-x64/System.Security.AccessControl.dll differ diff --git a/publish/setup-win-x64/System.Security.Claims.dll b/publish/setup-win-x64/System.Security.Claims.dll new file mode 100644 index 0000000..325d20a Binary files /dev/null and b/publish/setup-win-x64/System.Security.Claims.dll differ diff --git a/publish/setup-win-x64/System.Security.Cryptography.Algorithms.dll b/publish/setup-win-x64/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..243d82e Binary files /dev/null and b/publish/setup-win-x64/System.Security.Cryptography.Algorithms.dll differ diff --git a/publish/setup-win-x64/System.Security.Cryptography.Cng.dll b/publish/setup-win-x64/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..0c1408b Binary files /dev/null and b/publish/setup-win-x64/System.Security.Cryptography.Cng.dll differ diff --git a/publish/setup-win-x64/System.Security.Cryptography.Csp.dll b/publish/setup-win-x64/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..65cfc8c Binary files /dev/null and b/publish/setup-win-x64/System.Security.Cryptography.Csp.dll differ diff --git a/publish/setup-win-x64/System.Security.Cryptography.Encoding.dll b/publish/setup-win-x64/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..dc82ed1 Binary files /dev/null and b/publish/setup-win-x64/System.Security.Cryptography.Encoding.dll differ diff --git a/publish/setup-win-x64/System.Security.Cryptography.OpenSsl.dll b/publish/setup-win-x64/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..533b945 Binary files /dev/null and b/publish/setup-win-x64/System.Security.Cryptography.OpenSsl.dll differ diff --git a/publish/setup-win-x64/System.Security.Cryptography.Pkcs.dll b/publish/setup-win-x64/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..a0b3e1f Binary files /dev/null and b/publish/setup-win-x64/System.Security.Cryptography.Pkcs.dll differ diff --git a/publish/setup-win-x64/System.Security.Cryptography.Primitives.dll b/publish/setup-win-x64/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..8a6216d Binary files /dev/null and b/publish/setup-win-x64/System.Security.Cryptography.Primitives.dll differ diff --git a/publish/setup-win-x64/System.Security.Cryptography.ProtectedData.dll b/publish/setup-win-x64/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..65ef770 Binary files /dev/null and b/publish/setup-win-x64/System.Security.Cryptography.ProtectedData.dll differ diff --git a/publish/setup-win-x64/System.Security.Cryptography.X509Certificates.dll b/publish/setup-win-x64/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..768ac3e Binary files /dev/null and b/publish/setup-win-x64/System.Security.Cryptography.X509Certificates.dll differ diff --git a/publish/setup-win-x64/System.Security.Cryptography.Xml.dll b/publish/setup-win-x64/System.Security.Cryptography.Xml.dll new file mode 100644 index 0000000..6bd060b Binary files /dev/null and b/publish/setup-win-x64/System.Security.Cryptography.Xml.dll differ diff --git a/publish/setup-win-x64/System.Security.Cryptography.dll b/publish/setup-win-x64/System.Security.Cryptography.dll new file mode 100644 index 0000000..ab19f1f Binary files /dev/null and b/publish/setup-win-x64/System.Security.Cryptography.dll differ diff --git a/publish/setup-win-x64/System.Security.Permissions.dll b/publish/setup-win-x64/System.Security.Permissions.dll new file mode 100644 index 0000000..167ae93 Binary files /dev/null and b/publish/setup-win-x64/System.Security.Permissions.dll differ diff --git a/publish/setup-win-x64/System.Security.Principal.Windows.dll b/publish/setup-win-x64/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..effcd7b Binary files /dev/null and b/publish/setup-win-x64/System.Security.Principal.Windows.dll differ diff --git a/publish/setup-win-x64/System.Security.Principal.dll b/publish/setup-win-x64/System.Security.Principal.dll new file mode 100644 index 0000000..4e95677 Binary files /dev/null and b/publish/setup-win-x64/System.Security.Principal.dll differ diff --git a/publish/setup-win-x64/System.Security.SecureString.dll b/publish/setup-win-x64/System.Security.SecureString.dll new file mode 100644 index 0000000..60ed674 Binary files /dev/null and b/publish/setup-win-x64/System.Security.SecureString.dll differ diff --git a/publish/setup-win-x64/System.Security.dll b/publish/setup-win-x64/System.Security.dll new file mode 100644 index 0000000..0b111ed Binary files /dev/null and b/publish/setup-win-x64/System.Security.dll differ diff --git a/publish/setup-win-x64/System.ServiceModel.Web.dll b/publish/setup-win-x64/System.ServiceModel.Web.dll new file mode 100644 index 0000000..363cd00 Binary files /dev/null and b/publish/setup-win-x64/System.ServiceModel.Web.dll differ diff --git a/publish/setup-win-x64/System.ServiceProcess.dll b/publish/setup-win-x64/System.ServiceProcess.dll new file mode 100644 index 0000000..facbe7c Binary files /dev/null and b/publish/setup-win-x64/System.ServiceProcess.dll differ diff --git a/publish/setup-win-x64/System.Text.Encoding.CodePages.dll b/publish/setup-win-x64/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..990aac6 Binary files /dev/null and b/publish/setup-win-x64/System.Text.Encoding.CodePages.dll differ diff --git a/publish/setup-win-x64/System.Text.Encoding.Extensions.dll b/publish/setup-win-x64/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..30359a1 Binary files /dev/null and b/publish/setup-win-x64/System.Text.Encoding.Extensions.dll differ diff --git a/publish/setup-win-x64/System.Text.Encoding.dll b/publish/setup-win-x64/System.Text.Encoding.dll new file mode 100644 index 0000000..38f6821 Binary files /dev/null and b/publish/setup-win-x64/System.Text.Encoding.dll differ diff --git a/publish/setup-win-x64/System.Text.Encodings.Web.dll b/publish/setup-win-x64/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..fe1f79a Binary files /dev/null and b/publish/setup-win-x64/System.Text.Encodings.Web.dll differ diff --git a/publish/setup-win-x64/System.Text.Json.dll b/publish/setup-win-x64/System.Text.Json.dll new file mode 100644 index 0000000..9a7bb3a Binary files /dev/null and b/publish/setup-win-x64/System.Text.Json.dll differ diff --git a/publish/setup-win-x64/System.Text.RegularExpressions.dll b/publish/setup-win-x64/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..a08cef6 Binary files /dev/null and b/publish/setup-win-x64/System.Text.RegularExpressions.dll differ diff --git a/publish/setup-win-x64/System.Threading.AccessControl.dll b/publish/setup-win-x64/System.Threading.AccessControl.dll new file mode 100644 index 0000000..d261ee8 Binary files /dev/null and b/publish/setup-win-x64/System.Threading.AccessControl.dll differ diff --git a/publish/setup-win-x64/System.Threading.Channels.dll b/publish/setup-win-x64/System.Threading.Channels.dll new file mode 100644 index 0000000..a8c202d Binary files /dev/null and b/publish/setup-win-x64/System.Threading.Channels.dll differ diff --git a/publish/setup-win-x64/System.Threading.Overlapped.dll b/publish/setup-win-x64/System.Threading.Overlapped.dll new file mode 100644 index 0000000..846a2dd Binary files /dev/null and b/publish/setup-win-x64/System.Threading.Overlapped.dll differ diff --git a/publish/setup-win-x64/System.Threading.Tasks.Dataflow.dll b/publish/setup-win-x64/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..6affc43 Binary files /dev/null and b/publish/setup-win-x64/System.Threading.Tasks.Dataflow.dll differ diff --git a/publish/setup-win-x64/System.Threading.Tasks.Extensions.dll b/publish/setup-win-x64/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..e453c5c Binary files /dev/null and b/publish/setup-win-x64/System.Threading.Tasks.Extensions.dll differ diff --git a/publish/setup-win-x64/System.Threading.Tasks.Parallel.dll b/publish/setup-win-x64/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..d234555 Binary files /dev/null and b/publish/setup-win-x64/System.Threading.Tasks.Parallel.dll differ diff --git a/publish/setup-win-x64/System.Threading.Tasks.dll b/publish/setup-win-x64/System.Threading.Tasks.dll new file mode 100644 index 0000000..3a2b107 Binary files /dev/null and b/publish/setup-win-x64/System.Threading.Tasks.dll differ diff --git a/publish/setup-win-x64/System.Threading.Thread.dll b/publish/setup-win-x64/System.Threading.Thread.dll new file mode 100644 index 0000000..8b0ed21 Binary files /dev/null and b/publish/setup-win-x64/System.Threading.Thread.dll differ diff --git a/publish/setup-win-x64/System.Threading.ThreadPool.dll b/publish/setup-win-x64/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..dea32eb Binary files /dev/null and b/publish/setup-win-x64/System.Threading.ThreadPool.dll differ diff --git a/publish/setup-win-x64/System.Threading.Timer.dll b/publish/setup-win-x64/System.Threading.Timer.dll new file mode 100644 index 0000000..825a808 Binary files /dev/null and b/publish/setup-win-x64/System.Threading.Timer.dll differ diff --git a/publish/setup-win-x64/System.Threading.dll b/publish/setup-win-x64/System.Threading.dll new file mode 100644 index 0000000..f512c1b Binary files /dev/null and b/publish/setup-win-x64/System.Threading.dll differ diff --git a/publish/setup-win-x64/System.Transactions.Local.dll b/publish/setup-win-x64/System.Transactions.Local.dll new file mode 100644 index 0000000..9b70413 Binary files /dev/null and b/publish/setup-win-x64/System.Transactions.Local.dll differ diff --git a/publish/setup-win-x64/System.Transactions.dll b/publish/setup-win-x64/System.Transactions.dll new file mode 100644 index 0000000..77e1e8a Binary files /dev/null and b/publish/setup-win-x64/System.Transactions.dll differ diff --git a/publish/setup-win-x64/System.ValueTuple.dll b/publish/setup-win-x64/System.ValueTuple.dll new file mode 100644 index 0000000..fd1db8b Binary files /dev/null and b/publish/setup-win-x64/System.ValueTuple.dll differ diff --git a/publish/setup-win-x64/System.Web.HttpUtility.dll b/publish/setup-win-x64/System.Web.HttpUtility.dll new file mode 100644 index 0000000..dc5fa28 Binary files /dev/null and b/publish/setup-win-x64/System.Web.HttpUtility.dll differ diff --git a/publish/setup-win-x64/System.Web.dll b/publish/setup-win-x64/System.Web.dll new file mode 100644 index 0000000..6232ed3 Binary files /dev/null and b/publish/setup-win-x64/System.Web.dll differ diff --git a/publish/setup-win-x64/System.Windows.Controls.Ribbon.dll b/publish/setup-win-x64/System.Windows.Controls.Ribbon.dll new file mode 100644 index 0000000..0f826ac Binary files /dev/null and b/publish/setup-win-x64/System.Windows.Controls.Ribbon.dll differ diff --git a/publish/setup-win-x64/System.Windows.Extensions.dll b/publish/setup-win-x64/System.Windows.Extensions.dll new file mode 100644 index 0000000..0a761fe Binary files /dev/null and b/publish/setup-win-x64/System.Windows.Extensions.dll differ diff --git a/publish/setup-win-x64/System.Windows.Input.Manipulations.dll b/publish/setup-win-x64/System.Windows.Input.Manipulations.dll new file mode 100644 index 0000000..76d0305 Binary files /dev/null and b/publish/setup-win-x64/System.Windows.Input.Manipulations.dll differ diff --git a/publish/setup-win-x64/System.Windows.Presentation.dll b/publish/setup-win-x64/System.Windows.Presentation.dll new file mode 100644 index 0000000..9eeeafe Binary files /dev/null and b/publish/setup-win-x64/System.Windows.Presentation.dll differ diff --git a/publish/setup-win-x64/System.Windows.dll b/publish/setup-win-x64/System.Windows.dll new file mode 100644 index 0000000..1edff58 Binary files /dev/null and b/publish/setup-win-x64/System.Windows.dll differ diff --git a/publish/setup-win-x64/System.Xaml.dll b/publish/setup-win-x64/System.Xaml.dll new file mode 100644 index 0000000..19dbb4e Binary files /dev/null and b/publish/setup-win-x64/System.Xaml.dll differ diff --git a/publish/setup-win-x64/System.Xml.Linq.dll b/publish/setup-win-x64/System.Xml.Linq.dll new file mode 100644 index 0000000..bde3175 Binary files /dev/null and b/publish/setup-win-x64/System.Xml.Linq.dll differ diff --git a/publish/setup-win-x64/System.Xml.ReaderWriter.dll b/publish/setup-win-x64/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..9757625 Binary files /dev/null and b/publish/setup-win-x64/System.Xml.ReaderWriter.dll differ diff --git a/publish/setup-win-x64/System.Xml.Serialization.dll b/publish/setup-win-x64/System.Xml.Serialization.dll new file mode 100644 index 0000000..e0fb15b Binary files /dev/null and b/publish/setup-win-x64/System.Xml.Serialization.dll differ diff --git a/publish/setup-win-x64/System.Xml.XDocument.dll b/publish/setup-win-x64/System.Xml.XDocument.dll new file mode 100644 index 0000000..2e0fee4 Binary files /dev/null and b/publish/setup-win-x64/System.Xml.XDocument.dll differ diff --git a/publish/setup-win-x64/System.Xml.XPath.XDocument.dll b/publish/setup-win-x64/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..95c5c37 Binary files /dev/null and b/publish/setup-win-x64/System.Xml.XPath.XDocument.dll differ diff --git a/publish/setup-win-x64/System.Xml.XPath.dll b/publish/setup-win-x64/System.Xml.XPath.dll new file mode 100644 index 0000000..eeb2614 Binary files /dev/null and b/publish/setup-win-x64/System.Xml.XPath.dll differ diff --git a/publish/setup-win-x64/System.Xml.XmlDocument.dll b/publish/setup-win-x64/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..9d0a2d7 Binary files /dev/null and b/publish/setup-win-x64/System.Xml.XmlDocument.dll differ diff --git a/publish/setup-win-x64/System.Xml.XmlSerializer.dll b/publish/setup-win-x64/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..779fdef Binary files /dev/null and b/publish/setup-win-x64/System.Xml.XmlSerializer.dll differ diff --git a/publish/setup-win-x64/System.Xml.dll b/publish/setup-win-x64/System.Xml.dll new file mode 100644 index 0000000..5185c79 Binary files /dev/null and b/publish/setup-win-x64/System.Xml.dll differ diff --git a/publish/setup-win-x64/System.dll b/publish/setup-win-x64/System.dll new file mode 100644 index 0000000..9215aaf Binary files /dev/null and b/publish/setup-win-x64/System.dll differ diff --git a/publish/setup-win-x64/UIAutomationClient.dll b/publish/setup-win-x64/UIAutomationClient.dll new file mode 100644 index 0000000..b1fce45 Binary files /dev/null and b/publish/setup-win-x64/UIAutomationClient.dll differ diff --git a/publish/setup-win-x64/UIAutomationClientSideProviders.dll b/publish/setup-win-x64/UIAutomationClientSideProviders.dll new file mode 100644 index 0000000..2405c12 Binary files /dev/null and b/publish/setup-win-x64/UIAutomationClientSideProviders.dll differ diff --git a/publish/setup-win-x64/UIAutomationProvider.dll b/publish/setup-win-x64/UIAutomationProvider.dll new file mode 100644 index 0000000..f298f21 Binary files /dev/null and b/publish/setup-win-x64/UIAutomationProvider.dll differ diff --git a/publish/setup-win-x64/UIAutomationTypes.dll b/publish/setup-win-x64/UIAutomationTypes.dll new file mode 100644 index 0000000..563afd7 Binary files /dev/null and b/publish/setup-win-x64/UIAutomationTypes.dll differ diff --git a/publish/setup-win-x64/WindowsBase.dll b/publish/setup-win-x64/WindowsBase.dll new file mode 100644 index 0000000..bd9b454 Binary files /dev/null and b/publish/setup-win-x64/WindowsBase.dll differ diff --git a/publish/setup-win-x64/clretwrc.dll b/publish/setup-win-x64/clretwrc.dll new file mode 100644 index 0000000..f3fa86f Binary files /dev/null and b/publish/setup-win-x64/clretwrc.dll differ diff --git a/publish/setup-win-x64/clrgc.dll b/publish/setup-win-x64/clrgc.dll new file mode 100644 index 0000000..180e9ed Binary files /dev/null and b/publish/setup-win-x64/clrgc.dll differ diff --git a/publish/setup-win-x64/clrgcexp.dll b/publish/setup-win-x64/clrgcexp.dll new file mode 100644 index 0000000..ba42ebc Binary files /dev/null and b/publish/setup-win-x64/clrgcexp.dll differ diff --git a/publish/setup-win-x64/clrjit.dll b/publish/setup-win-x64/clrjit.dll new file mode 100644 index 0000000..9482ae9 Binary files /dev/null and b/publish/setup-win-x64/clrjit.dll differ diff --git a/publish/setup-win-x64/coreclr.dll b/publish/setup-win-x64/coreclr.dll new file mode 100644 index 0000000..897d9fc Binary files /dev/null and b/publish/setup-win-x64/coreclr.dll differ diff --git a/publish/setup-win-x64/createdump.exe b/publish/setup-win-x64/createdump.exe new file mode 100644 index 0000000..c538d0a Binary files /dev/null and b/publish/setup-win-x64/createdump.exe differ diff --git a/publish/setup-win-x64/cs/Microsoft.Data.SqlClient.resources.dll b/publish/setup-win-x64/cs/Microsoft.Data.SqlClient.resources.dll new file mode 100644 index 0000000..17086db Binary files /dev/null and b/publish/setup-win-x64/cs/Microsoft.Data.SqlClient.resources.dll differ diff --git a/publish/setup-win-x64/cs/PresentationCore.resources.dll b/publish/setup-win-x64/cs/PresentationCore.resources.dll new file mode 100644 index 0000000..207169c Binary files /dev/null and b/publish/setup-win-x64/cs/PresentationCore.resources.dll differ diff --git a/publish/setup-win-x64/cs/PresentationFramework.resources.dll b/publish/setup-win-x64/cs/PresentationFramework.resources.dll new file mode 100644 index 0000000..3b78d31 Binary files /dev/null and b/publish/setup-win-x64/cs/PresentationFramework.resources.dll differ diff --git a/publish/setup-win-x64/cs/PresentationUI.resources.dll b/publish/setup-win-x64/cs/PresentationUI.resources.dll new file mode 100644 index 0000000..b9d6137 Binary files /dev/null and b/publish/setup-win-x64/cs/PresentationUI.resources.dll differ diff --git a/publish/setup-win-x64/cs/ReachFramework.resources.dll b/publish/setup-win-x64/cs/ReachFramework.resources.dll new file mode 100644 index 0000000..353eb93 Binary files /dev/null and b/publish/setup-win-x64/cs/ReachFramework.resources.dll differ diff --git a/publish/setup-win-x64/cs/System.Windows.Controls.Ribbon.resources.dll b/publish/setup-win-x64/cs/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..da27f7a Binary files /dev/null and b/publish/setup-win-x64/cs/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/publish/setup-win-x64/cs/System.Windows.Input.Manipulations.resources.dll b/publish/setup-win-x64/cs/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..46c0fad Binary files /dev/null and b/publish/setup-win-x64/cs/System.Windows.Input.Manipulations.resources.dll differ diff --git a/publish/setup-win-x64/cs/System.Xaml.resources.dll b/publish/setup-win-x64/cs/System.Xaml.resources.dll new file mode 100644 index 0000000..65faacc Binary files /dev/null and b/publish/setup-win-x64/cs/System.Xaml.resources.dll differ diff --git a/publish/setup-win-x64/cs/UIAutomationClient.resources.dll b/publish/setup-win-x64/cs/UIAutomationClient.resources.dll new file mode 100644 index 0000000..b6c28b2 Binary files /dev/null and b/publish/setup-win-x64/cs/UIAutomationClient.resources.dll differ diff --git a/publish/setup-win-x64/cs/UIAutomationClientSideProviders.resources.dll b/publish/setup-win-x64/cs/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..a2f3094 Binary files /dev/null and b/publish/setup-win-x64/cs/UIAutomationClientSideProviders.resources.dll differ diff --git a/publish/setup-win-x64/cs/UIAutomationProvider.resources.dll b/publish/setup-win-x64/cs/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..61edc67 Binary files /dev/null and b/publish/setup-win-x64/cs/UIAutomationProvider.resources.dll differ diff --git a/publish/setup-win-x64/cs/UIAutomationTypes.resources.dll b/publish/setup-win-x64/cs/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..196d151 Binary files /dev/null and b/publish/setup-win-x64/cs/UIAutomationTypes.resources.dll differ diff --git a/publish/setup-win-x64/cs/WindowsBase.resources.dll b/publish/setup-win-x64/cs/WindowsBase.resources.dll new file mode 100644 index 0000000..84d8168 Binary files /dev/null and b/publish/setup-win-x64/cs/WindowsBase.resources.dll differ diff --git a/publish/setup-win-x64/de/Microsoft.Data.SqlClient.resources.dll b/publish/setup-win-x64/de/Microsoft.Data.SqlClient.resources.dll new file mode 100644 index 0000000..7a44f30 Binary files /dev/null and b/publish/setup-win-x64/de/Microsoft.Data.SqlClient.resources.dll differ diff --git a/publish/setup-win-x64/de/PresentationCore.resources.dll b/publish/setup-win-x64/de/PresentationCore.resources.dll new file mode 100644 index 0000000..276bd76 Binary files /dev/null and b/publish/setup-win-x64/de/PresentationCore.resources.dll differ diff --git a/publish/setup-win-x64/de/PresentationFramework.resources.dll b/publish/setup-win-x64/de/PresentationFramework.resources.dll new file mode 100644 index 0000000..5c2a560 Binary files /dev/null and b/publish/setup-win-x64/de/PresentationFramework.resources.dll differ diff --git a/publish/setup-win-x64/de/PresentationUI.resources.dll b/publish/setup-win-x64/de/PresentationUI.resources.dll new file mode 100644 index 0000000..68e1fc8 Binary files /dev/null and b/publish/setup-win-x64/de/PresentationUI.resources.dll differ diff --git a/publish/setup-win-x64/de/ReachFramework.resources.dll b/publish/setup-win-x64/de/ReachFramework.resources.dll new file mode 100644 index 0000000..14dd6ff Binary files /dev/null and b/publish/setup-win-x64/de/ReachFramework.resources.dll differ diff --git a/publish/setup-win-x64/de/System.Windows.Controls.Ribbon.resources.dll b/publish/setup-win-x64/de/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..223f25d Binary files /dev/null and b/publish/setup-win-x64/de/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/publish/setup-win-x64/de/System.Windows.Input.Manipulations.resources.dll b/publish/setup-win-x64/de/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..11a6d86 Binary files /dev/null and b/publish/setup-win-x64/de/System.Windows.Input.Manipulations.resources.dll differ diff --git a/publish/setup-win-x64/de/System.Xaml.resources.dll b/publish/setup-win-x64/de/System.Xaml.resources.dll new file mode 100644 index 0000000..c1e6a8d Binary files /dev/null and b/publish/setup-win-x64/de/System.Xaml.resources.dll differ diff --git a/publish/setup-win-x64/de/UIAutomationClient.resources.dll b/publish/setup-win-x64/de/UIAutomationClient.resources.dll new file mode 100644 index 0000000..c83e088 Binary files /dev/null and b/publish/setup-win-x64/de/UIAutomationClient.resources.dll differ diff --git a/publish/setup-win-x64/de/UIAutomationClientSideProviders.resources.dll b/publish/setup-win-x64/de/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..f2c2dfd Binary files /dev/null and b/publish/setup-win-x64/de/UIAutomationClientSideProviders.resources.dll differ diff --git a/publish/setup-win-x64/de/UIAutomationProvider.resources.dll b/publish/setup-win-x64/de/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..caa331a Binary files /dev/null and b/publish/setup-win-x64/de/UIAutomationProvider.resources.dll differ diff --git a/publish/setup-win-x64/de/UIAutomationTypes.resources.dll b/publish/setup-win-x64/de/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..31124f8 Binary files /dev/null and b/publish/setup-win-x64/de/UIAutomationTypes.resources.dll differ diff --git a/publish/setup-win-x64/de/WindowsBase.resources.dll b/publish/setup-win-x64/de/WindowsBase.resources.dll new file mode 100644 index 0000000..f9661dd Binary files /dev/null and b/publish/setup-win-x64/de/WindowsBase.resources.dll differ diff --git a/publish/setup-win-x64/es/Microsoft.Data.SqlClient.resources.dll b/publish/setup-win-x64/es/Microsoft.Data.SqlClient.resources.dll new file mode 100644 index 0000000..617b4a2 Binary files /dev/null and b/publish/setup-win-x64/es/Microsoft.Data.SqlClient.resources.dll differ diff --git a/publish/setup-win-x64/es/PresentationCore.resources.dll b/publish/setup-win-x64/es/PresentationCore.resources.dll new file mode 100644 index 0000000..17a0868 Binary files /dev/null and b/publish/setup-win-x64/es/PresentationCore.resources.dll differ diff --git a/publish/setup-win-x64/es/PresentationFramework.resources.dll b/publish/setup-win-x64/es/PresentationFramework.resources.dll new file mode 100644 index 0000000..e8b88c3 Binary files /dev/null and b/publish/setup-win-x64/es/PresentationFramework.resources.dll differ diff --git a/publish/setup-win-x64/es/PresentationUI.resources.dll b/publish/setup-win-x64/es/PresentationUI.resources.dll new file mode 100644 index 0000000..9b32667 Binary files /dev/null and b/publish/setup-win-x64/es/PresentationUI.resources.dll differ diff --git a/publish/setup-win-x64/es/ReachFramework.resources.dll b/publish/setup-win-x64/es/ReachFramework.resources.dll new file mode 100644 index 0000000..fac8008 Binary files /dev/null and b/publish/setup-win-x64/es/ReachFramework.resources.dll differ diff --git a/publish/setup-win-x64/es/System.Windows.Controls.Ribbon.resources.dll b/publish/setup-win-x64/es/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..6c6a3fb Binary files /dev/null and b/publish/setup-win-x64/es/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/publish/setup-win-x64/es/System.Windows.Input.Manipulations.resources.dll b/publish/setup-win-x64/es/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..e17dea9 Binary files /dev/null and b/publish/setup-win-x64/es/System.Windows.Input.Manipulations.resources.dll differ diff --git a/publish/setup-win-x64/es/System.Xaml.resources.dll b/publish/setup-win-x64/es/System.Xaml.resources.dll new file mode 100644 index 0000000..ea2b91a Binary files /dev/null and b/publish/setup-win-x64/es/System.Xaml.resources.dll differ diff --git a/publish/setup-win-x64/es/UIAutomationClient.resources.dll b/publish/setup-win-x64/es/UIAutomationClient.resources.dll new file mode 100644 index 0000000..7c284dc Binary files /dev/null and b/publish/setup-win-x64/es/UIAutomationClient.resources.dll differ diff --git a/publish/setup-win-x64/es/UIAutomationClientSideProviders.resources.dll b/publish/setup-win-x64/es/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..7bd94ff Binary files /dev/null and b/publish/setup-win-x64/es/UIAutomationClientSideProviders.resources.dll differ diff --git a/publish/setup-win-x64/es/UIAutomationProvider.resources.dll b/publish/setup-win-x64/es/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..9b93a04 Binary files /dev/null and b/publish/setup-win-x64/es/UIAutomationProvider.resources.dll differ diff --git a/publish/setup-win-x64/es/UIAutomationTypes.resources.dll b/publish/setup-win-x64/es/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..5882277 Binary files /dev/null and b/publish/setup-win-x64/es/UIAutomationTypes.resources.dll differ diff --git a/publish/setup-win-x64/es/WindowsBase.resources.dll b/publish/setup-win-x64/es/WindowsBase.resources.dll new file mode 100644 index 0000000..0ef349c Binary files /dev/null and b/publish/setup-win-x64/es/WindowsBase.resources.dll differ diff --git a/publish/setup-win-x64/fr/Microsoft.Data.SqlClient.resources.dll b/publish/setup-win-x64/fr/Microsoft.Data.SqlClient.resources.dll new file mode 100644 index 0000000..bd0a3f5 Binary files /dev/null and b/publish/setup-win-x64/fr/Microsoft.Data.SqlClient.resources.dll differ diff --git a/publish/setup-win-x64/fr/PresentationCore.resources.dll b/publish/setup-win-x64/fr/PresentationCore.resources.dll new file mode 100644 index 0000000..565edc7 Binary files /dev/null and b/publish/setup-win-x64/fr/PresentationCore.resources.dll differ diff --git a/publish/setup-win-x64/fr/PresentationFramework.resources.dll b/publish/setup-win-x64/fr/PresentationFramework.resources.dll new file mode 100644 index 0000000..fbcd431 Binary files /dev/null and b/publish/setup-win-x64/fr/PresentationFramework.resources.dll differ diff --git a/publish/setup-win-x64/fr/PresentationUI.resources.dll b/publish/setup-win-x64/fr/PresentationUI.resources.dll new file mode 100644 index 0000000..8bd3f81 Binary files /dev/null and b/publish/setup-win-x64/fr/PresentationUI.resources.dll differ diff --git a/publish/setup-win-x64/fr/ReachFramework.resources.dll b/publish/setup-win-x64/fr/ReachFramework.resources.dll new file mode 100644 index 0000000..e802ded Binary files /dev/null and b/publish/setup-win-x64/fr/ReachFramework.resources.dll differ diff --git a/publish/setup-win-x64/fr/System.Windows.Controls.Ribbon.resources.dll b/publish/setup-win-x64/fr/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..daf7102 Binary files /dev/null and b/publish/setup-win-x64/fr/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/publish/setup-win-x64/fr/System.Windows.Input.Manipulations.resources.dll b/publish/setup-win-x64/fr/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..de1f6e4 Binary files /dev/null and b/publish/setup-win-x64/fr/System.Windows.Input.Manipulations.resources.dll differ diff --git a/publish/setup-win-x64/fr/System.Xaml.resources.dll b/publish/setup-win-x64/fr/System.Xaml.resources.dll new file mode 100644 index 0000000..4ace6ad Binary files /dev/null and b/publish/setup-win-x64/fr/System.Xaml.resources.dll differ diff --git a/publish/setup-win-x64/fr/UIAutomationClient.resources.dll b/publish/setup-win-x64/fr/UIAutomationClient.resources.dll new file mode 100644 index 0000000..9ec4df2 Binary files /dev/null and b/publish/setup-win-x64/fr/UIAutomationClient.resources.dll differ diff --git a/publish/setup-win-x64/fr/UIAutomationClientSideProviders.resources.dll b/publish/setup-win-x64/fr/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..4e06fee Binary files /dev/null and b/publish/setup-win-x64/fr/UIAutomationClientSideProviders.resources.dll differ diff --git a/publish/setup-win-x64/fr/UIAutomationProvider.resources.dll b/publish/setup-win-x64/fr/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..02f17fd Binary files /dev/null and b/publish/setup-win-x64/fr/UIAutomationProvider.resources.dll differ diff --git a/publish/setup-win-x64/fr/UIAutomationTypes.resources.dll b/publish/setup-win-x64/fr/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..964d757 Binary files /dev/null and b/publish/setup-win-x64/fr/UIAutomationTypes.resources.dll differ diff --git a/publish/setup-win-x64/fr/WindowsBase.resources.dll b/publish/setup-win-x64/fr/WindowsBase.resources.dll new file mode 100644 index 0000000..692516a Binary files /dev/null and b/publish/setup-win-x64/fr/WindowsBase.resources.dll differ diff --git a/publish/setup-win-x64/hostfxr.dll b/publish/setup-win-x64/hostfxr.dll new file mode 100644 index 0000000..5a7258f Binary files /dev/null and b/publish/setup-win-x64/hostfxr.dll differ diff --git a/publish/setup-win-x64/hostpolicy.dll b/publish/setup-win-x64/hostpolicy.dll new file mode 100644 index 0000000..b573b55 Binary files /dev/null and b/publish/setup-win-x64/hostpolicy.dll differ diff --git a/publish/setup-win-x64/init.sql b/publish/setup-win-x64/init.sql new file mode 100644 index 0000000..91eb954 --- /dev/null +++ b/publish/setup-win-x64/init.sql @@ -0,0 +1,177 @@ +-- Run this script against the Housing database before running the app. +-- It creates the login tables and login procedures. + +IF OBJECT_ID(N'dbo.Operator_Account', N'U') IS NULL +BEGIN + CREATE TABLE dbo.Operator_Account + ( + [Operator] NVARCHAR(10) NOT NULL + CONSTRAINT PK_Operator_Account PRIMARY KEY, + [Password] NVARCHAR(50) NOT NULL, + [CreatedAt] DATETIME2(0) NOT NULL + CONSTRAINT DF_Operator_Account_CreatedAt DEFAULT (SYSDATETIME()), + [UpdatedAt] DATETIME2(0) NULL + ); +END; +GO + +IF COL_LENGTH(N'dbo.Operator_Account', N'IsActive') IS NOT NULL +BEGIN + DECLARE @DefaultConstraintName SYSNAME; + + SELECT @DefaultConstraintName = dc.name + FROM sys.default_constraints AS dc + INNER JOIN sys.columns AS c + ON c.default_object_id = dc.object_id + WHERE dc.parent_object_id = OBJECT_ID(N'dbo.Operator_Account', N'U') + AND c.name = N'IsActive'; + + IF @DefaultConstraintName IS NOT NULL + BEGIN + EXEC(N'ALTER TABLE dbo.Operator_Account DROP CONSTRAINT [' + @DefaultConstraintName + N']'); + END; + + ALTER TABLE dbo.Operator_Account DROP COLUMN [IsActive]; +END; +GO + +IF OBJECT_ID(N'dbo.Operator_Process', N'U') IS NULL +BEGIN + CREATE TABLE dbo.Operator_Process + ( + [Operator] NVARCHAR(10) NOT NULL, + [ProcessName] NVARCHAR(30) NOT NULL, + [CreatedAt] DATETIME2(0) NOT NULL + CONSTRAINT DF_Operator_Process_CreatedAt DEFAULT (SYSDATETIME()), + CONSTRAINT PK_Operator_Process PRIMARY KEY ([Operator], [ProcessName]), + CONSTRAINT FK_Operator_Process_Operator_Account FOREIGN KEY ([Operator]) + REFERENCES dbo.Operator_Account ([Operator]) + ON DELETE CASCADE + ); +END; +GO + +IF EXISTS (SELECT 1 FROM dbo.Operator_Account WHERE [Operator] = N'su') +BEGIN + UPDATE dbo.Operator_Account + SET + [Password] = N'su', + [UpdatedAt] = SYSDATETIME() + WHERE [Operator] = N'su'; +END +ELSE +BEGIN + INSERT INTO dbo.Operator_Account + ( + [Operator], + [Password] + ) + VALUES + ( + N'su', + N'su' + ); +END; +GO + +IF NOT EXISTS +( + SELECT 1 + FROM dbo.Operator_Process + WHERE [Operator] = N'su' + AND [ProcessName] = N'Housing' +) +BEGIN + INSERT INTO dbo.Operator_Process + ( + [Operator], + [ProcessName] + ) + VALUES + ( + N'su', + N'Housing' + ); +END; +GO + +CREATE OR ALTER PROCEDURE dbo.CheckOperator + @Operator NVARCHAR(10), + @Password NVARCHAR(50), + @ProcessName NVARCHAR(30) = N'Housing' +AS +BEGIN + SET NOCOUNT ON; + + SELECT CAST( + CASE + WHEN EXISTS + ( + SELECT 1 + FROM dbo.Operator_Account AS account + INNER JOIN dbo.Operator_Process AS process + ON process.[Operator] = account.[Operator] + WHERE account.[Operator] = @Operator + AND account.[Password] = @Password + AND process.[ProcessName] = @ProcessName + ) + THEN 1 + ELSE 0 + END AS BIT) AS IsValid; +END; +GO + +CREATE OR ALTER PROCEDURE dbo.SaveOperator + @Operator NVARCHAR(10), + @Password NVARCHAR(50), + @ProcessName NVARCHAR(30) = N'Housing' +AS +BEGIN + SET NOCOUNT ON; + SET XACT_ABORT ON; + + BEGIN TRANSACTION; + + UPDATE dbo.Operator_Account + SET + [Password] = @Password, + [UpdatedAt] = SYSDATETIME() + WHERE [Operator] = @Operator; + + IF @@ROWCOUNT = 0 + BEGIN + INSERT INTO dbo.Operator_Account + ( + [Operator], + [Password] + ) + VALUES + ( + @Operator, + @Password + ); + END; + + IF NOT EXISTS + ( + SELECT 1 + FROM dbo.Operator_Process + WHERE [Operator] = @Operator + AND [ProcessName] = @ProcessName + ) + BEGIN + INSERT INTO dbo.Operator_Process + ( + [Operator], + [ProcessName] + ) + VALUES + ( + @Operator, + @ProcessName + ); + END; + + COMMIT TRANSACTION; +END; +GO diff --git a/publish/setup-win-x64/it/Microsoft.Data.SqlClient.resources.dll b/publish/setup-win-x64/it/Microsoft.Data.SqlClient.resources.dll new file mode 100644 index 0000000..b8e85d8 Binary files /dev/null and b/publish/setup-win-x64/it/Microsoft.Data.SqlClient.resources.dll differ diff --git a/publish/setup-win-x64/it/PresentationCore.resources.dll b/publish/setup-win-x64/it/PresentationCore.resources.dll new file mode 100644 index 0000000..b4809a1 Binary files /dev/null and b/publish/setup-win-x64/it/PresentationCore.resources.dll differ diff --git a/publish/setup-win-x64/it/PresentationFramework.resources.dll b/publish/setup-win-x64/it/PresentationFramework.resources.dll new file mode 100644 index 0000000..03851cc Binary files /dev/null and b/publish/setup-win-x64/it/PresentationFramework.resources.dll differ diff --git a/publish/setup-win-x64/it/PresentationUI.resources.dll b/publish/setup-win-x64/it/PresentationUI.resources.dll new file mode 100644 index 0000000..78ad120 Binary files /dev/null and b/publish/setup-win-x64/it/PresentationUI.resources.dll differ diff --git a/publish/setup-win-x64/it/ReachFramework.resources.dll b/publish/setup-win-x64/it/ReachFramework.resources.dll new file mode 100644 index 0000000..547569b Binary files /dev/null and b/publish/setup-win-x64/it/ReachFramework.resources.dll differ diff --git a/publish/setup-win-x64/it/System.Windows.Controls.Ribbon.resources.dll b/publish/setup-win-x64/it/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..ae77aef Binary files /dev/null and b/publish/setup-win-x64/it/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/publish/setup-win-x64/it/System.Windows.Input.Manipulations.resources.dll b/publish/setup-win-x64/it/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..047cbd9 Binary files /dev/null and b/publish/setup-win-x64/it/System.Windows.Input.Manipulations.resources.dll differ diff --git a/publish/setup-win-x64/it/System.Xaml.resources.dll b/publish/setup-win-x64/it/System.Xaml.resources.dll new file mode 100644 index 0000000..666980a Binary files /dev/null and b/publish/setup-win-x64/it/System.Xaml.resources.dll differ diff --git a/publish/setup-win-x64/it/UIAutomationClient.resources.dll b/publish/setup-win-x64/it/UIAutomationClient.resources.dll new file mode 100644 index 0000000..aa5c4eb Binary files /dev/null and b/publish/setup-win-x64/it/UIAutomationClient.resources.dll differ diff --git a/publish/setup-win-x64/it/UIAutomationClientSideProviders.resources.dll b/publish/setup-win-x64/it/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..513f178 Binary files /dev/null and b/publish/setup-win-x64/it/UIAutomationClientSideProviders.resources.dll differ diff --git a/publish/setup-win-x64/it/UIAutomationProvider.resources.dll b/publish/setup-win-x64/it/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..5ebe347 Binary files /dev/null and b/publish/setup-win-x64/it/UIAutomationProvider.resources.dll differ diff --git a/publish/setup-win-x64/it/UIAutomationTypes.resources.dll b/publish/setup-win-x64/it/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..f2b69c4 Binary files /dev/null and b/publish/setup-win-x64/it/UIAutomationTypes.resources.dll differ diff --git a/publish/setup-win-x64/it/WindowsBase.resources.dll b/publish/setup-win-x64/it/WindowsBase.resources.dll new file mode 100644 index 0000000..198abf9 Binary files /dev/null and b/publish/setup-win-x64/it/WindowsBase.resources.dll differ diff --git a/publish/setup-win-x64/ja/Microsoft.Data.SqlClient.resources.dll b/publish/setup-win-x64/ja/Microsoft.Data.SqlClient.resources.dll new file mode 100644 index 0000000..1b8d883 Binary files /dev/null and b/publish/setup-win-x64/ja/Microsoft.Data.SqlClient.resources.dll differ diff --git a/publish/setup-win-x64/ja/PresentationCore.resources.dll b/publish/setup-win-x64/ja/PresentationCore.resources.dll new file mode 100644 index 0000000..8abd5da Binary files /dev/null and b/publish/setup-win-x64/ja/PresentationCore.resources.dll differ diff --git a/publish/setup-win-x64/ja/PresentationFramework.resources.dll b/publish/setup-win-x64/ja/PresentationFramework.resources.dll new file mode 100644 index 0000000..d5b3403 Binary files /dev/null and b/publish/setup-win-x64/ja/PresentationFramework.resources.dll differ diff --git a/publish/setup-win-x64/ja/PresentationUI.resources.dll b/publish/setup-win-x64/ja/PresentationUI.resources.dll new file mode 100644 index 0000000..786bca6 Binary files /dev/null and b/publish/setup-win-x64/ja/PresentationUI.resources.dll differ diff --git a/publish/setup-win-x64/ja/ReachFramework.resources.dll b/publish/setup-win-x64/ja/ReachFramework.resources.dll new file mode 100644 index 0000000..9f92718 Binary files /dev/null and b/publish/setup-win-x64/ja/ReachFramework.resources.dll differ diff --git a/publish/setup-win-x64/ja/System.Windows.Controls.Ribbon.resources.dll b/publish/setup-win-x64/ja/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..85815d6 Binary files /dev/null and b/publish/setup-win-x64/ja/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/publish/setup-win-x64/ja/System.Windows.Input.Manipulations.resources.dll b/publish/setup-win-x64/ja/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..cd4be3b Binary files /dev/null and b/publish/setup-win-x64/ja/System.Windows.Input.Manipulations.resources.dll differ diff --git a/publish/setup-win-x64/ja/System.Xaml.resources.dll b/publish/setup-win-x64/ja/System.Xaml.resources.dll new file mode 100644 index 0000000..c098282 Binary files /dev/null and b/publish/setup-win-x64/ja/System.Xaml.resources.dll differ diff --git a/publish/setup-win-x64/ja/UIAutomationClient.resources.dll b/publish/setup-win-x64/ja/UIAutomationClient.resources.dll new file mode 100644 index 0000000..2af31f4 Binary files /dev/null and b/publish/setup-win-x64/ja/UIAutomationClient.resources.dll differ diff --git a/publish/setup-win-x64/ja/UIAutomationClientSideProviders.resources.dll b/publish/setup-win-x64/ja/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..713dbd4 Binary files /dev/null and b/publish/setup-win-x64/ja/UIAutomationClientSideProviders.resources.dll differ diff --git a/publish/setup-win-x64/ja/UIAutomationProvider.resources.dll b/publish/setup-win-x64/ja/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..5961e4a Binary files /dev/null and b/publish/setup-win-x64/ja/UIAutomationProvider.resources.dll differ diff --git a/publish/setup-win-x64/ja/UIAutomationTypes.resources.dll b/publish/setup-win-x64/ja/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..6c51a29 Binary files /dev/null and b/publish/setup-win-x64/ja/UIAutomationTypes.resources.dll differ diff --git a/publish/setup-win-x64/ja/WindowsBase.resources.dll b/publish/setup-win-x64/ja/WindowsBase.resources.dll new file mode 100644 index 0000000..eacb2c6 Binary files /dev/null and b/publish/setup-win-x64/ja/WindowsBase.resources.dll differ diff --git a/publish/setup-win-x64/ko/Microsoft.Data.SqlClient.resources.dll b/publish/setup-win-x64/ko/Microsoft.Data.SqlClient.resources.dll new file mode 100644 index 0000000..78df387 Binary files /dev/null and b/publish/setup-win-x64/ko/Microsoft.Data.SqlClient.resources.dll differ diff --git a/publish/setup-win-x64/ko/PresentationCore.resources.dll b/publish/setup-win-x64/ko/PresentationCore.resources.dll new file mode 100644 index 0000000..756a81b Binary files /dev/null and b/publish/setup-win-x64/ko/PresentationCore.resources.dll differ diff --git a/publish/setup-win-x64/ko/PresentationFramework.resources.dll b/publish/setup-win-x64/ko/PresentationFramework.resources.dll new file mode 100644 index 0000000..4b9d9d0 Binary files /dev/null and b/publish/setup-win-x64/ko/PresentationFramework.resources.dll differ diff --git a/publish/setup-win-x64/ko/PresentationUI.resources.dll b/publish/setup-win-x64/ko/PresentationUI.resources.dll new file mode 100644 index 0000000..7132a06 Binary files /dev/null and b/publish/setup-win-x64/ko/PresentationUI.resources.dll differ diff --git a/publish/setup-win-x64/ko/ReachFramework.resources.dll b/publish/setup-win-x64/ko/ReachFramework.resources.dll new file mode 100644 index 0000000..3d94145 Binary files /dev/null and b/publish/setup-win-x64/ko/ReachFramework.resources.dll differ diff --git a/publish/setup-win-x64/ko/System.Windows.Controls.Ribbon.resources.dll b/publish/setup-win-x64/ko/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..7515fe8 Binary files /dev/null and b/publish/setup-win-x64/ko/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/publish/setup-win-x64/ko/System.Windows.Input.Manipulations.resources.dll b/publish/setup-win-x64/ko/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..b109306 Binary files /dev/null and b/publish/setup-win-x64/ko/System.Windows.Input.Manipulations.resources.dll differ diff --git a/publish/setup-win-x64/ko/System.Xaml.resources.dll b/publish/setup-win-x64/ko/System.Xaml.resources.dll new file mode 100644 index 0000000..47b4130 Binary files /dev/null and b/publish/setup-win-x64/ko/System.Xaml.resources.dll differ diff --git a/publish/setup-win-x64/ko/UIAutomationClient.resources.dll b/publish/setup-win-x64/ko/UIAutomationClient.resources.dll new file mode 100644 index 0000000..6b6e6e6 Binary files /dev/null and b/publish/setup-win-x64/ko/UIAutomationClient.resources.dll differ diff --git a/publish/setup-win-x64/ko/UIAutomationClientSideProviders.resources.dll b/publish/setup-win-x64/ko/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..6a38686 Binary files /dev/null and b/publish/setup-win-x64/ko/UIAutomationClientSideProviders.resources.dll differ diff --git a/publish/setup-win-x64/ko/UIAutomationProvider.resources.dll b/publish/setup-win-x64/ko/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..037fdee Binary files /dev/null and b/publish/setup-win-x64/ko/UIAutomationProvider.resources.dll differ diff --git a/publish/setup-win-x64/ko/UIAutomationTypes.resources.dll b/publish/setup-win-x64/ko/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..3ce5ce4 Binary files /dev/null and b/publish/setup-win-x64/ko/UIAutomationTypes.resources.dll differ diff --git a/publish/setup-win-x64/ko/WindowsBase.resources.dll b/publish/setup-win-x64/ko/WindowsBase.resources.dll new file mode 100644 index 0000000..4ee382e Binary files /dev/null and b/publish/setup-win-x64/ko/WindowsBase.resources.dll differ diff --git a/publish/setup-win-x64/mscordaccore.dll b/publish/setup-win-x64/mscordaccore.dll new file mode 100644 index 0000000..d72de82 Binary files /dev/null and b/publish/setup-win-x64/mscordaccore.dll differ diff --git a/publish/setup-win-x64/mscordaccore_amd64_amd64_9.0.1726.26416.dll b/publish/setup-win-x64/mscordaccore_amd64_amd64_9.0.1726.26416.dll new file mode 100644 index 0000000..d72de82 Binary files /dev/null and b/publish/setup-win-x64/mscordaccore_amd64_amd64_9.0.1726.26416.dll differ diff --git a/publish/setup-win-x64/mscordbi.dll b/publish/setup-win-x64/mscordbi.dll new file mode 100644 index 0000000..b81f3df Binary files /dev/null and b/publish/setup-win-x64/mscordbi.dll differ diff --git a/publish/setup-win-x64/mscorlib.dll b/publish/setup-win-x64/mscorlib.dll new file mode 100644 index 0000000..11c5d43 Binary files /dev/null and b/publish/setup-win-x64/mscorlib.dll differ diff --git a/publish/setup-win-x64/mscorrc.dll b/publish/setup-win-x64/mscorrc.dll new file mode 100644 index 0000000..99c0fea Binary files /dev/null and b/publish/setup-win-x64/mscorrc.dll differ diff --git a/publish/setup-win-x64/msquic.dll b/publish/setup-win-x64/msquic.dll new file mode 100644 index 0000000..9f0824a Binary files /dev/null and b/publish/setup-win-x64/msquic.dll differ diff --git a/publish/setup-win-x64/netstandard.dll b/publish/setup-win-x64/netstandard.dll new file mode 100644 index 0000000..5b4edfa Binary files /dev/null and b/publish/setup-win-x64/netstandard.dll differ diff --git a/publish/setup-win-x64/pl/Microsoft.Data.SqlClient.resources.dll b/publish/setup-win-x64/pl/Microsoft.Data.SqlClient.resources.dll new file mode 100644 index 0000000..31d9257 Binary files /dev/null and b/publish/setup-win-x64/pl/Microsoft.Data.SqlClient.resources.dll differ diff --git a/publish/setup-win-x64/pl/PresentationCore.resources.dll b/publish/setup-win-x64/pl/PresentationCore.resources.dll new file mode 100644 index 0000000..278c8a9 Binary files /dev/null and b/publish/setup-win-x64/pl/PresentationCore.resources.dll differ diff --git a/publish/setup-win-x64/pl/PresentationFramework.resources.dll b/publish/setup-win-x64/pl/PresentationFramework.resources.dll new file mode 100644 index 0000000..752bfd4 Binary files /dev/null and b/publish/setup-win-x64/pl/PresentationFramework.resources.dll differ diff --git a/publish/setup-win-x64/pl/PresentationUI.resources.dll b/publish/setup-win-x64/pl/PresentationUI.resources.dll new file mode 100644 index 0000000..c48c21a Binary files /dev/null and b/publish/setup-win-x64/pl/PresentationUI.resources.dll differ diff --git a/publish/setup-win-x64/pl/ReachFramework.resources.dll b/publish/setup-win-x64/pl/ReachFramework.resources.dll new file mode 100644 index 0000000..4ca1fe0 Binary files /dev/null and b/publish/setup-win-x64/pl/ReachFramework.resources.dll differ diff --git a/publish/setup-win-x64/pl/System.Windows.Controls.Ribbon.resources.dll b/publish/setup-win-x64/pl/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..fc943ac Binary files /dev/null and b/publish/setup-win-x64/pl/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/publish/setup-win-x64/pl/System.Windows.Input.Manipulations.resources.dll b/publish/setup-win-x64/pl/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..04e7f3e Binary files /dev/null and b/publish/setup-win-x64/pl/System.Windows.Input.Manipulations.resources.dll differ diff --git a/publish/setup-win-x64/pl/System.Xaml.resources.dll b/publish/setup-win-x64/pl/System.Xaml.resources.dll new file mode 100644 index 0000000..a89e0b5 Binary files /dev/null and b/publish/setup-win-x64/pl/System.Xaml.resources.dll differ diff --git a/publish/setup-win-x64/pl/UIAutomationClient.resources.dll b/publish/setup-win-x64/pl/UIAutomationClient.resources.dll new file mode 100644 index 0000000..a67a681 Binary files /dev/null and b/publish/setup-win-x64/pl/UIAutomationClient.resources.dll differ diff --git a/publish/setup-win-x64/pl/UIAutomationClientSideProviders.resources.dll b/publish/setup-win-x64/pl/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..59b1c2e Binary files /dev/null and b/publish/setup-win-x64/pl/UIAutomationClientSideProviders.resources.dll differ diff --git a/publish/setup-win-x64/pl/UIAutomationProvider.resources.dll b/publish/setup-win-x64/pl/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..5e7ead6 Binary files /dev/null and b/publish/setup-win-x64/pl/UIAutomationProvider.resources.dll differ diff --git a/publish/setup-win-x64/pl/UIAutomationTypes.resources.dll b/publish/setup-win-x64/pl/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..8ddb58d Binary files /dev/null and b/publish/setup-win-x64/pl/UIAutomationTypes.resources.dll differ diff --git a/publish/setup-win-x64/pl/WindowsBase.resources.dll b/publish/setup-win-x64/pl/WindowsBase.resources.dll new file mode 100644 index 0000000..48fe110 Binary files /dev/null and b/publish/setup-win-x64/pl/WindowsBase.resources.dll differ diff --git a/publish/setup-win-x64/pt-BR/Microsoft.Data.SqlClient.resources.dll b/publish/setup-win-x64/pt-BR/Microsoft.Data.SqlClient.resources.dll new file mode 100644 index 0000000..8340fc6 Binary files /dev/null and b/publish/setup-win-x64/pt-BR/Microsoft.Data.SqlClient.resources.dll differ diff --git a/publish/setup-win-x64/pt-BR/PresentationCore.resources.dll b/publish/setup-win-x64/pt-BR/PresentationCore.resources.dll new file mode 100644 index 0000000..ca386b1 Binary files /dev/null and b/publish/setup-win-x64/pt-BR/PresentationCore.resources.dll differ diff --git a/publish/setup-win-x64/pt-BR/PresentationFramework.resources.dll b/publish/setup-win-x64/pt-BR/PresentationFramework.resources.dll new file mode 100644 index 0000000..db914bc Binary files /dev/null and b/publish/setup-win-x64/pt-BR/PresentationFramework.resources.dll differ diff --git a/publish/setup-win-x64/pt-BR/PresentationUI.resources.dll b/publish/setup-win-x64/pt-BR/PresentationUI.resources.dll new file mode 100644 index 0000000..0265c79 Binary files /dev/null and b/publish/setup-win-x64/pt-BR/PresentationUI.resources.dll differ diff --git a/publish/setup-win-x64/pt-BR/ReachFramework.resources.dll b/publish/setup-win-x64/pt-BR/ReachFramework.resources.dll new file mode 100644 index 0000000..20a458d Binary files /dev/null and b/publish/setup-win-x64/pt-BR/ReachFramework.resources.dll differ diff --git a/publish/setup-win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll b/publish/setup-win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..0066d47 Binary files /dev/null and b/publish/setup-win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/publish/setup-win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll b/publish/setup-win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..2fbebbc Binary files /dev/null and b/publish/setup-win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll differ diff --git a/publish/setup-win-x64/pt-BR/System.Xaml.resources.dll b/publish/setup-win-x64/pt-BR/System.Xaml.resources.dll new file mode 100644 index 0000000..6a09708 Binary files /dev/null and b/publish/setup-win-x64/pt-BR/System.Xaml.resources.dll differ diff --git a/publish/setup-win-x64/pt-BR/UIAutomationClient.resources.dll b/publish/setup-win-x64/pt-BR/UIAutomationClient.resources.dll new file mode 100644 index 0000000..51ea654 Binary files /dev/null and b/publish/setup-win-x64/pt-BR/UIAutomationClient.resources.dll differ diff --git a/publish/setup-win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll b/publish/setup-win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..f8187b3 Binary files /dev/null and b/publish/setup-win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll differ diff --git a/publish/setup-win-x64/pt-BR/UIAutomationProvider.resources.dll b/publish/setup-win-x64/pt-BR/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..6d9f6e4 Binary files /dev/null and b/publish/setup-win-x64/pt-BR/UIAutomationProvider.resources.dll differ diff --git a/publish/setup-win-x64/pt-BR/UIAutomationTypes.resources.dll b/publish/setup-win-x64/pt-BR/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..3a9c956 Binary files /dev/null and b/publish/setup-win-x64/pt-BR/UIAutomationTypes.resources.dll differ diff --git a/publish/setup-win-x64/pt-BR/WindowsBase.resources.dll b/publish/setup-win-x64/pt-BR/WindowsBase.resources.dll new file mode 100644 index 0000000..493af82 Binary files /dev/null and b/publish/setup-win-x64/pt-BR/WindowsBase.resources.dll differ diff --git a/publish/setup-win-x64/ru/Microsoft.Data.SqlClient.resources.dll b/publish/setup-win-x64/ru/Microsoft.Data.SqlClient.resources.dll new file mode 100644 index 0000000..8336d55 Binary files /dev/null and b/publish/setup-win-x64/ru/Microsoft.Data.SqlClient.resources.dll differ diff --git a/publish/setup-win-x64/ru/PresentationCore.resources.dll b/publish/setup-win-x64/ru/PresentationCore.resources.dll new file mode 100644 index 0000000..fc3eaff Binary files /dev/null and b/publish/setup-win-x64/ru/PresentationCore.resources.dll differ diff --git a/publish/setup-win-x64/ru/PresentationFramework.resources.dll b/publish/setup-win-x64/ru/PresentationFramework.resources.dll new file mode 100644 index 0000000..4d9ba5f Binary files /dev/null and b/publish/setup-win-x64/ru/PresentationFramework.resources.dll differ diff --git a/publish/setup-win-x64/ru/PresentationUI.resources.dll b/publish/setup-win-x64/ru/PresentationUI.resources.dll new file mode 100644 index 0000000..68a5cc0 Binary files /dev/null and b/publish/setup-win-x64/ru/PresentationUI.resources.dll differ diff --git a/publish/setup-win-x64/ru/ReachFramework.resources.dll b/publish/setup-win-x64/ru/ReachFramework.resources.dll new file mode 100644 index 0000000..69d00b3 Binary files /dev/null and b/publish/setup-win-x64/ru/ReachFramework.resources.dll differ diff --git a/publish/setup-win-x64/ru/System.Windows.Controls.Ribbon.resources.dll b/publish/setup-win-x64/ru/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..11b151c Binary files /dev/null and b/publish/setup-win-x64/ru/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/publish/setup-win-x64/ru/System.Windows.Input.Manipulations.resources.dll b/publish/setup-win-x64/ru/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..eabdcf9 Binary files /dev/null and b/publish/setup-win-x64/ru/System.Windows.Input.Manipulations.resources.dll differ diff --git a/publish/setup-win-x64/ru/System.Xaml.resources.dll b/publish/setup-win-x64/ru/System.Xaml.resources.dll new file mode 100644 index 0000000..758de3b Binary files /dev/null and b/publish/setup-win-x64/ru/System.Xaml.resources.dll differ diff --git a/publish/setup-win-x64/ru/UIAutomationClient.resources.dll b/publish/setup-win-x64/ru/UIAutomationClient.resources.dll new file mode 100644 index 0000000..6db889b Binary files /dev/null and b/publish/setup-win-x64/ru/UIAutomationClient.resources.dll differ diff --git a/publish/setup-win-x64/ru/UIAutomationClientSideProviders.resources.dll b/publish/setup-win-x64/ru/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..01a147e Binary files /dev/null and b/publish/setup-win-x64/ru/UIAutomationClientSideProviders.resources.dll differ diff --git a/publish/setup-win-x64/ru/UIAutomationProvider.resources.dll b/publish/setup-win-x64/ru/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..549dee3 Binary files /dev/null and b/publish/setup-win-x64/ru/UIAutomationProvider.resources.dll differ diff --git a/publish/setup-win-x64/ru/UIAutomationTypes.resources.dll b/publish/setup-win-x64/ru/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..0a54e20 Binary files /dev/null and b/publish/setup-win-x64/ru/UIAutomationTypes.resources.dll differ diff --git a/publish/setup-win-x64/ru/WindowsBase.resources.dll b/publish/setup-win-x64/ru/WindowsBase.resources.dll new file mode 100644 index 0000000..3dbd9b0 Binary files /dev/null and b/publish/setup-win-x64/ru/WindowsBase.resources.dll differ diff --git a/publish/setup-win-x64/tr/Microsoft.Data.SqlClient.resources.dll b/publish/setup-win-x64/tr/Microsoft.Data.SqlClient.resources.dll new file mode 100644 index 0000000..f3eff6a Binary files /dev/null and b/publish/setup-win-x64/tr/Microsoft.Data.SqlClient.resources.dll differ diff --git a/publish/setup-win-x64/tr/PresentationCore.resources.dll b/publish/setup-win-x64/tr/PresentationCore.resources.dll new file mode 100644 index 0000000..cda1bf7 Binary files /dev/null and b/publish/setup-win-x64/tr/PresentationCore.resources.dll differ diff --git a/publish/setup-win-x64/tr/PresentationFramework.resources.dll b/publish/setup-win-x64/tr/PresentationFramework.resources.dll new file mode 100644 index 0000000..f91c0d6 Binary files /dev/null and b/publish/setup-win-x64/tr/PresentationFramework.resources.dll differ diff --git a/publish/setup-win-x64/tr/PresentationUI.resources.dll b/publish/setup-win-x64/tr/PresentationUI.resources.dll new file mode 100644 index 0000000..f534fe6 Binary files /dev/null and b/publish/setup-win-x64/tr/PresentationUI.resources.dll differ diff --git a/publish/setup-win-x64/tr/ReachFramework.resources.dll b/publish/setup-win-x64/tr/ReachFramework.resources.dll new file mode 100644 index 0000000..fa40a34 Binary files /dev/null and b/publish/setup-win-x64/tr/ReachFramework.resources.dll differ diff --git a/publish/setup-win-x64/tr/System.Windows.Controls.Ribbon.resources.dll b/publish/setup-win-x64/tr/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..1ada715 Binary files /dev/null and b/publish/setup-win-x64/tr/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/publish/setup-win-x64/tr/System.Windows.Input.Manipulations.resources.dll b/publish/setup-win-x64/tr/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..330e9e8 Binary files /dev/null and b/publish/setup-win-x64/tr/System.Windows.Input.Manipulations.resources.dll differ diff --git a/publish/setup-win-x64/tr/System.Xaml.resources.dll b/publish/setup-win-x64/tr/System.Xaml.resources.dll new file mode 100644 index 0000000..ef7105b Binary files /dev/null and b/publish/setup-win-x64/tr/System.Xaml.resources.dll differ diff --git a/publish/setup-win-x64/tr/UIAutomationClient.resources.dll b/publish/setup-win-x64/tr/UIAutomationClient.resources.dll new file mode 100644 index 0000000..908f75a Binary files /dev/null and b/publish/setup-win-x64/tr/UIAutomationClient.resources.dll differ diff --git a/publish/setup-win-x64/tr/UIAutomationClientSideProviders.resources.dll b/publish/setup-win-x64/tr/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..ce1e867 Binary files /dev/null and b/publish/setup-win-x64/tr/UIAutomationClientSideProviders.resources.dll differ diff --git a/publish/setup-win-x64/tr/UIAutomationProvider.resources.dll b/publish/setup-win-x64/tr/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..40f9d11 Binary files /dev/null and b/publish/setup-win-x64/tr/UIAutomationProvider.resources.dll differ diff --git a/publish/setup-win-x64/tr/UIAutomationTypes.resources.dll b/publish/setup-win-x64/tr/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..756f86b Binary files /dev/null and b/publish/setup-win-x64/tr/UIAutomationTypes.resources.dll differ diff --git a/publish/setup-win-x64/tr/WindowsBase.resources.dll b/publish/setup-win-x64/tr/WindowsBase.resources.dll new file mode 100644 index 0000000..d7f7b2b Binary files /dev/null and b/publish/setup-win-x64/tr/WindowsBase.resources.dll differ diff --git a/publish/setup-win-x64/vcruntime140_cor3.dll b/publish/setup-win-x64/vcruntime140_cor3.dll new file mode 100644 index 0000000..5786e93 Binary files /dev/null and b/publish/setup-win-x64/vcruntime140_cor3.dll differ diff --git a/publish/setup-win-x64/wpfgfx_cor3.dll b/publish/setup-win-x64/wpfgfx_cor3.dll new file mode 100644 index 0000000..c5fde62 Binary files /dev/null and b/publish/setup-win-x64/wpfgfx_cor3.dll differ diff --git a/publish/setup-win-x64/zh-Hans/Microsoft.Data.SqlClient.resources.dll b/publish/setup-win-x64/zh-Hans/Microsoft.Data.SqlClient.resources.dll new file mode 100644 index 0000000..8092fcb Binary files /dev/null and b/publish/setup-win-x64/zh-Hans/Microsoft.Data.SqlClient.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hans/PresentationCore.resources.dll b/publish/setup-win-x64/zh-Hans/PresentationCore.resources.dll new file mode 100644 index 0000000..e9d4f7f Binary files /dev/null and b/publish/setup-win-x64/zh-Hans/PresentationCore.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hans/PresentationFramework.resources.dll b/publish/setup-win-x64/zh-Hans/PresentationFramework.resources.dll new file mode 100644 index 0000000..57fd4cc Binary files /dev/null and b/publish/setup-win-x64/zh-Hans/PresentationFramework.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hans/PresentationUI.resources.dll b/publish/setup-win-x64/zh-Hans/PresentationUI.resources.dll new file mode 100644 index 0000000..ce04291 Binary files /dev/null and b/publish/setup-win-x64/zh-Hans/PresentationUI.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hans/ReachFramework.resources.dll b/publish/setup-win-x64/zh-Hans/ReachFramework.resources.dll new file mode 100644 index 0000000..2024267 Binary files /dev/null and b/publish/setup-win-x64/zh-Hans/ReachFramework.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll b/publish/setup-win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..b54777f Binary files /dev/null and b/publish/setup-win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll b/publish/setup-win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..1c83b76 Binary files /dev/null and b/publish/setup-win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hans/System.Xaml.resources.dll b/publish/setup-win-x64/zh-Hans/System.Xaml.resources.dll new file mode 100644 index 0000000..3c6a3c5 Binary files /dev/null and b/publish/setup-win-x64/zh-Hans/System.Xaml.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hans/UIAutomationClient.resources.dll b/publish/setup-win-x64/zh-Hans/UIAutomationClient.resources.dll new file mode 100644 index 0000000..312d1f4 Binary files /dev/null and b/publish/setup-win-x64/zh-Hans/UIAutomationClient.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll b/publish/setup-win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..e786f22 Binary files /dev/null and b/publish/setup-win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hans/UIAutomationProvider.resources.dll b/publish/setup-win-x64/zh-Hans/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..0e3c3f4 Binary files /dev/null and b/publish/setup-win-x64/zh-Hans/UIAutomationProvider.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hans/UIAutomationTypes.resources.dll b/publish/setup-win-x64/zh-Hans/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..bc2e4e4 Binary files /dev/null and b/publish/setup-win-x64/zh-Hans/UIAutomationTypes.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hans/WindowsBase.resources.dll b/publish/setup-win-x64/zh-Hans/WindowsBase.resources.dll new file mode 100644 index 0000000..8f22809 Binary files /dev/null and b/publish/setup-win-x64/zh-Hans/WindowsBase.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hant/Microsoft.Data.SqlClient.resources.dll b/publish/setup-win-x64/zh-Hant/Microsoft.Data.SqlClient.resources.dll new file mode 100644 index 0000000..7246f2d Binary files /dev/null and b/publish/setup-win-x64/zh-Hant/Microsoft.Data.SqlClient.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hant/PresentationCore.resources.dll b/publish/setup-win-x64/zh-Hant/PresentationCore.resources.dll new file mode 100644 index 0000000..2e0b220 Binary files /dev/null and b/publish/setup-win-x64/zh-Hant/PresentationCore.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hant/PresentationFramework.resources.dll b/publish/setup-win-x64/zh-Hant/PresentationFramework.resources.dll new file mode 100644 index 0000000..592a9e5 Binary files /dev/null and b/publish/setup-win-x64/zh-Hant/PresentationFramework.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hant/PresentationUI.resources.dll b/publish/setup-win-x64/zh-Hant/PresentationUI.resources.dll new file mode 100644 index 0000000..a873b27 Binary files /dev/null and b/publish/setup-win-x64/zh-Hant/PresentationUI.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hant/ReachFramework.resources.dll b/publish/setup-win-x64/zh-Hant/ReachFramework.resources.dll new file mode 100644 index 0000000..ded7344 Binary files /dev/null and b/publish/setup-win-x64/zh-Hant/ReachFramework.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll b/publish/setup-win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..9bea0c9 Binary files /dev/null and b/publish/setup-win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll b/publish/setup-win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..1360985 Binary files /dev/null and b/publish/setup-win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hant/System.Xaml.resources.dll b/publish/setup-win-x64/zh-Hant/System.Xaml.resources.dll new file mode 100644 index 0000000..b4f315f Binary files /dev/null and b/publish/setup-win-x64/zh-Hant/System.Xaml.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hant/UIAutomationClient.resources.dll b/publish/setup-win-x64/zh-Hant/UIAutomationClient.resources.dll new file mode 100644 index 0000000..9dfe48d Binary files /dev/null and b/publish/setup-win-x64/zh-Hant/UIAutomationClient.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll b/publish/setup-win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..edf5a14 Binary files /dev/null and b/publish/setup-win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hant/UIAutomationProvider.resources.dll b/publish/setup-win-x64/zh-Hant/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..9a95e15 Binary files /dev/null and b/publish/setup-win-x64/zh-Hant/UIAutomationProvider.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hant/UIAutomationTypes.resources.dll b/publish/setup-win-x64/zh-Hant/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..fc93fcd Binary files /dev/null and b/publish/setup-win-x64/zh-Hant/UIAutomationTypes.resources.dll differ diff --git a/publish/setup-win-x64/zh-Hant/WindowsBase.resources.dll b/publish/setup-win-x64/zh-Hant/WindowsBase.resources.dll new file mode 100644 index 0000000..603bb8a Binary files /dev/null and b/publish/setup-win-x64/zh-Hant/WindowsBase.resources.dll differ diff --git a/publish/win-x64/Database.ini b/publish/win-x64/Database.ini index 70b05f0..8f32133 100644 --- a/publish/win-x64/Database.ini +++ b/publish/win-x64/Database.ini @@ -9,4 +9,5 @@ Timeout=5 [Login] Procedure=dbo.CheckOperator +ProcessName=Housing OfflinePreview=true diff --git a/publish/win-x64/Housing.exe b/publish/win-x64/Housing.exe index 52a6445..2cbab41 100644 Binary files a/publish/win-x64/Housing.exe and b/publish/win-x64/Housing.exe differ diff --git a/publish/win-x64/Housing.pdb b/publish/win-x64/Housing.pdb index 4aae8e0..f0d1e40 100644 Binary files a/publish/win-x64/Housing.pdb and b/publish/win-x64/Housing.pdb differ diff --git a/publish/win-x64/init.sql b/publish/win-x64/init.sql index 3676d4a..91eb954 100644 --- a/publish/win-x64/init.sql +++ b/publish/win-x64/init.sql @@ -1,5 +1,5 @@ -- Run this script against the Housing database before running the app. --- It creates the login table and login procedures. +-- It creates the login tables and login procedures. IF OBJECT_ID(N'dbo.Operator_Account', N'U') IS NULL BEGIN @@ -35,6 +35,22 @@ BEGIN END; GO +IF OBJECT_ID(N'dbo.Operator_Process', N'U') IS NULL +BEGIN + CREATE TABLE dbo.Operator_Process + ( + [Operator] NVARCHAR(10) NOT NULL, + [ProcessName] NVARCHAR(30) NOT NULL, + [CreatedAt] DATETIME2(0) NOT NULL + CONSTRAINT DF_Operator_Process_CreatedAt DEFAULT (SYSDATETIME()), + CONSTRAINT PK_Operator_Process PRIMARY KEY ([Operator], [ProcessName]), + CONSTRAINT FK_Operator_Process_Operator_Account FOREIGN KEY ([Operator]) + REFERENCES dbo.Operator_Account ([Operator]) + ON DELETE CASCADE + ); +END; +GO + IF EXISTS (SELECT 1 FROM dbo.Operator_Account WHERE [Operator] = N'su') BEGIN UPDATE dbo.Operator_Account @@ -58,9 +74,31 @@ BEGIN END; GO +IF NOT EXISTS +( + SELECT 1 + FROM dbo.Operator_Process + WHERE [Operator] = N'su' + AND [ProcessName] = N'Housing' +) +BEGIN + INSERT INTO dbo.Operator_Process + ( + [Operator], + [ProcessName] + ) + VALUES + ( + N'su', + N'Housing' + ); +END; +GO + CREATE OR ALTER PROCEDURE dbo.CheckOperator @Operator NVARCHAR(10), - @Password NVARCHAR(50) + @Password NVARCHAR(50), + @ProcessName NVARCHAR(30) = N'Housing' AS BEGIN SET NOCOUNT ON; @@ -70,9 +108,12 @@ BEGIN WHEN EXISTS ( SELECT 1 - FROM dbo.Operator_Account - WHERE [Operator] = @Operator - AND [Password] = @Password + FROM dbo.Operator_Account AS account + INNER JOIN dbo.Operator_Process AS process + ON process.[Operator] = account.[Operator] + WHERE account.[Operator] = @Operator + AND account.[Password] = @Password + AND process.[ProcessName] = @ProcessName ) THEN 1 ELSE 0 @@ -82,20 +123,22 @@ GO CREATE OR ALTER PROCEDURE dbo.SaveOperator @Operator NVARCHAR(10), - @Password NVARCHAR(50) + @Password NVARCHAR(50), + @ProcessName NVARCHAR(30) = N'Housing' AS BEGIN SET NOCOUNT ON; + SET XACT_ABORT ON; - IF EXISTS (SELECT 1 FROM dbo.Operator_Account WHERE [Operator] = @Operator) - BEGIN - UPDATE dbo.Operator_Account - SET - [Password] = @Password, - [UpdatedAt] = SYSDATETIME() - WHERE [Operator] = @Operator; - END - ELSE + BEGIN TRANSACTION; + + UPDATE dbo.Operator_Account + SET + [Password] = @Password, + [UpdatedAt] = SYSDATETIME() + WHERE [Operator] = @Operator; + + IF @@ROWCOUNT = 0 BEGIN INSERT INTO dbo.Operator_Account ( @@ -108,5 +151,27 @@ BEGIN @Password ); END; + + IF NOT EXISTS + ( + SELECT 1 + FROM dbo.Operator_Process + WHERE [Operator] = @Operator + AND [ProcessName] = @ProcessName + ) + BEGIN + INSERT INTO dbo.Operator_Process + ( + [Operator], + [ProcessName] + ) + VALUES + ( + @Operator, + @ProcessName + ); + END; + + COMMIT TRANSACTION; END; GO