diff --git a/SharkCage/CageServiceInstaller/CageServiceInstaller.cs b/SharkCage/CageServiceInstaller/CageServiceInstaller.cs
index 90b093fc..839bfc84 100644
--- a/SharkCage/CageServiceInstaller/CageServiceInstaller.cs
+++ b/SharkCage/CageServiceInstaller/CageServiceInstaller.cs
@@ -1,7 +1,12 @@
-using System;
+using Newtonsoft.Json.Linq;
+using System;
using System.Collections;
using System.ComponentModel;
using System.Configuration.Install;
+using System.IO;
+using System.Security.AccessControl;
+using System.Security.Cryptography;
+using System.Security.Principal;
namespace CageServiceInstaller
{
@@ -20,6 +25,9 @@ public override void Commit(System.Collections.IDictionary saved_state)
base.Commit(saved_state);
string target_dir = Context.Parameters["DP_TargetDir"].ToString();
+
+ AssimilateConfigToCurrentSystem(target_dir);
+
InstallAndStartService(target_dir);
}
@@ -35,12 +43,54 @@ public override void Uninstall(System.Collections.IDictionary saved_state)
UninstallService();
}
- private void InstallAndStartService(string path)
+ private void AssimilateConfigToCurrentSystem(string dir_path)
+ {
+ const string APPLICATION_PATH_PROPERTY = "application_path";
+ const string APPLICATION_HASH_PROPERTY = "binary_hash";
+ var path_to_config_exe = dir_path + "CageConfigurator.exe";
+
+ var config_path = Environment.ExpandEnvironmentVariables("%SystemDrive%\\Users\\Public\\Documents\\SharkCage\\CageConfigurator.sconfig");
+
+ var json = JObject.Parse(File.ReadAllText(config_path));
+ var application_path = json.GetValue(APPLICATION_PATH_PROPERTY).ToString();
+ json[APPLICATION_PATH_PROPERTY] = path_to_config_exe;
+ json[APPLICATION_HASH_PROPERTY] = GetSha512Hash(path_to_config_exe);
+ var output = Newtonsoft.Json.JsonConvert.SerializeObject(json, Newtonsoft.Json.Formatting.Indented);
+
+ File.WriteAllText(config_path, output);
+
+ // generate acl for config (only admin group has access)
+ IdentityReference built_in_administrators = new SecurityIdentifier(WellKnownSidType.BuiltinAdministratorsSid, null);
+ var file_security = new FileSecurity();
+
+ file_security.SetOwner(built_in_administrators);
+ foreach (FileSystemAccessRule fs_access_rule in file_security.GetAccessRules(true, true, typeof(SecurityIdentifier)))
+ {
+ file_security.RemoveAccessRule(fs_access_rule);
+ }
+ file_security.AddAccessRule(new FileSystemAccessRule(built_in_administrators, FileSystemRights.FullControl, AccessControlType.Allow));
+ file_security.SetAccessRuleProtection(true, false);
+
+ File.SetAccessControl(config_path, file_security);
+ }
+
+ private string GetSha512Hash(string file_path)
+ {
+ const int buffer_size = 1048576; // ~ 1MB per read
+ using (var bs = new BufferedStream(File.OpenRead(file_path), buffer_size))
+ {
+ var sha = new SHA512Managed();
+ byte[] hash = sha.ComputeHash(bs);
+ return BitConverter.ToString(hash).Replace("-", String.Empty);
+ }
+ }
+
+ private void InstallAndStartService(string dir_path)
{
try
{
UninstallService();
- ServiceInstaller.InstallAndStart(service_name, service_name, path);
+ ServiceInstaller.InstallAndStart(service_name, service_name, dir_path + "CageService.exe");
}
catch (Exception ex)
{
diff --git a/SharkCage/CageServiceInstaller/CageServiceInstaller.csproj b/SharkCage/CageServiceInstaller/CageServiceInstaller.csproj
index 3c1d0971..981f984e 100644
--- a/SharkCage/CageServiceInstaller/CageServiceInstaller.csproj
+++ b/SharkCage/CageServiceInstaller/CageServiceInstaller.csproj
@@ -30,6 +30,9 @@
4
+
+ ..\packages\Newtonsoft.Json.11.0.2\lib\netstandard2.0\Newtonsoft.Json.dll
+
diff --git a/SharkCage/SharkCageInstaller/SharkCageInstaller.vdproj b/SharkCage/SharkCageInstaller/SharkCageInstaller.vdproj
index 7d311700..e73b5222 100644
--- a/SharkCage/SharkCageInstaller/SharkCageInstaller.vdproj
+++ b/SharkCage/SharkCageInstaller/SharkCageInstaller.vdproj
@@ -21,12 +21,126 @@
}
"Entry"
{
+ "MsmKey" = "8:_035C580B15FC1A256CBD0398CC5885AE"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_03ED44E07D276F235D535922A4B99DBF"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_04B0F7B55FC750E2D5EDDE03C9CB84E8"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_05BEC8E3A30679D9871409E92D7A6B6C"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0604570C392BED0C36219542A5F74786"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
"MsmKey" = "8:_09FC33C69A21B22C9FF3A748E0F64B86"
"OwnerKey" = "8:_7804B69B4E70477F81F409F2AE60194D"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
+ "MsmKey" = "8:_09FC33C69A21B22C9FF3A748E0F64B86"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0A4C51B30CD211F2A51A6292AA627D1F"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0A9C7D3EAF67D8D5498D10CBDA00C464"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0AEAFF37D3F4BEF09E64168677E847A7"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0DCF7DDB011F66CE6EFFAB890ABB54EB"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0EA3B0676FD563806888707157836A28"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0EA3B0676FD563806888707157836A28"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_0ED1F8C92C042F65AA55F652C101FBE5"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_103DCBFA3BF151F964AFE89D05EC8EE8"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_13E55ED27505F92AAEC5BE814CA25E37"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_148BFA3D143DCAB54B082A98FA9128B2"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_14CC8A6F86AC246C8866B7A023FC257D"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_196D29FD0FE28373E29B98409C2BC6AE"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_1BA3AC9261C605668404B9F2C44BCFE0"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
"MsmKey" = "8:_1D9F727B52E2B783D351D3A563978BE0"
"OwnerKey" = "8:_7804B69B4E70477F81F409F2AE60194D"
"MsmSig" = "8:_UNDEFINED"
@@ -39,313 +153,6636 @@
}
"Entry"
{
+ "MsmKey" = "8:_1E66CB3AF7B67853058B7E82C3ED49E1"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_216252A8BBD3E1949EEC4B1A8C7461AA"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
"MsmKey" = "8:_23949B9F3DAD4E14A137ACF256F92A3C"
"OwnerKey" = "8:_UNDEFINED"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_4C24B7DB4E4A4A81B84E9B25DF5A8647"
- "OwnerKey" = "8:_UNDEFINED"
+ "MsmKey" = "8:_2521A2F6ACE18CC576082C421F8AFB05"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_63AF181CABB14A408EE15B685CD7A728"
- "OwnerKey" = "8:_UNDEFINED"
+ "MsmKey" = "8:_27650AA82AC2FC01E59FAE5C471E5D0C"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_7804B69B4E70477F81F409F2AE60194D"
- "OwnerKey" = "8:_UNDEFINED"
+ "MsmKey" = "8:_283F324DB860CEB262A5CF47F2CC264D"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_7BFF8A70116547B1A6683FF47B5E3E62"
- "OwnerKey" = "8:_UNDEFINED"
+ "MsmKey" = "8:_28F02D15E2CC4CD6C49538C039B14D78"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_8A8ED1AABB68440AB0601DB450CCF386"
- "OwnerKey" = "8:_UNDEFINED"
+ "MsmKey" = "8:_2CCAC0263BB1070CE1E672B97D3A6BB9"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_9225268146BB459386642FBCC47E116A"
- "OwnerKey" = "8:_UNDEFINED"
+ "MsmKey" = "8:_2F2DC16615350D15EE34084F4447B4BF"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_DF07548511334F1D921BFB7F0926DD86"
- "OwnerKey" = "8:_UNDEFINED"
+ "MsmKey" = "8:_32F953E30A67181CDDB7C0D7085C32D8"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_E943CA2FAF6449929DEB63A8430A741B"
- "OwnerKey" = "8:_UNDEFINED"
+ "MsmKey" = "8:_353F51099D587FFE55A071E76F175B8B"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_EE48644F738FAF6F608738C768C19F32"
- "OwnerKey" = "8:_7804B69B4E70477F81F409F2AE60194D"
+ "MsmKey" = "8:_36DAA3EFECE5BDEC13E06A5F523B4DB6"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_EE48644F738FAF6F608738C768C19F32"
- "OwnerKey" = "8:_1D9F727B52E2B783D351D3A563978BE0"
+ "MsmKey" = "8:_37902116145D83E1287DD93463CE291B"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_EF4B6F1AF9FE8033470A716D32B9ACBD"
- "OwnerKey" = "8:_7804B69B4E70477F81F409F2AE60194D"
+ "MsmKey" = "8:_383FB7C273B16AF7B6D79AF0D18DFDE2"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_F1E810AF35024A60B5693314B1D4542D"
- "OwnerKey" = "8:_UNDEFINED"
+ "MsmKey" = "8:_38A3118520088D878B30813B75315454"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_FBA8493A64611F9DA84D53481DFA1E95"
+ "MsmKey" = "8:_3CFED900173BECEED806865EB74E4812"
"OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_FBA8493A64611F9DA84D53481DFA1E95"
- "OwnerKey" = "8:_E943CA2FAF6449929DEB63A8430A741B"
+ "MsmKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_FBA8493A64611F9DA84D53481DFA1E95"
- "OwnerKey" = "8:_7804B69B4E70477F81F409F2AE60194D"
+ "MsmKey" = "8:_42961922B44A876D9E6F7BEFD5A13E0A"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_UNDEFINED"
+ "MsmKey" = "8:_432764C20EFAAEAFB50BEEBD12D98DD1"
"OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_UNDEFINED"
- "OwnerKey" = "8:_E943CA2FAF6449929DEB63A8430A741B"
+ "MsmKey" = "8:_4393691D54DCE578D18623D1DA63E759"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_UNDEFINED"
- "OwnerKey" = "8:_7804B69B4E70477F81F409F2AE60194D"
+ "MsmKey" = "8:_4435F8361E260227BE8B8D1F2187F763"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_UNDEFINED"
- "OwnerKey" = "8:_09FC33C69A21B22C9FF3A748E0F64B86"
+ "MsmKey" = "8:_46596CABB18D09DB06301B7B2602B7F1"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_UNDEFINED"
- "OwnerKey" = "8:_EF4B6F1AF9FE8033470A716D32B9ACBD"
+ "MsmKey" = "8:_4891769014FEE7BFA4495B40B49CDEE1"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_UNDEFINED"
- "OwnerKey" = "8:_1D9F727B52E2B783D351D3A563978BE0"
+ "MsmKey" = "8:_49D6377250180DBCE84760AB73A1FE19"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_UNDEFINED"
- "OwnerKey" = "8:_EE48644F738FAF6F608738C768C19F32"
+ "MsmKey" = "8:_4A2BE4C34598D8C4D1736E160EC230DD"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_UNDEFINED"
- "OwnerKey" = "8:_FBA8493A64611F9DA84D53481DFA1E95"
+ "MsmKey" = "8:_4AC827C0665B497E4327AF48EBF1BD4E"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
"MsmSig" = "8:_UNDEFINED"
}
- }
- "Configurations"
- {
- "Debug"
+ "Entry"
{
- "DisplayName" = "8:Debug"
- "IsDebugOnly" = "11:TRUE"
- "IsReleaseOnly" = "11:FALSE"
- "OutputFilename" = "8:Debug\\SharkCageInstaller.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}:.NETFramework,Version=v4.6.1"
- {
- "Name" = "8:Microsoft .NET Framework 4.6.1 (x86 and x64)"
- "ProductCode" = "8:.NETFramework,Version=v4.6.1"
- }
- }
- }
+ "MsmKey" = "8:_4AC827C0665B497E4327AF48EBF1BD4E"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
}
- "Release"
+ "Entry"
{
- "DisplayName" = "8:Release"
- "IsDebugOnly" = "11:FALSE"
- "IsReleaseOnly" = "11:TRUE"
- "OutputFilename" = "8:Release\\SharkCage.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}:.NETFramework,Version=v4.6.1"
- {
- "Name" = "8:Microsoft .NET Framework 4.6.1 (x86 and x64)"
- "ProductCode" = "8:.NETFramework,Version=v4.6.1"
- }
- }
- }
+ "MsmKey" = "8:_4BDBF96E67947E5C1E8DA4603BD0831C"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
}
- }
- "Deployable"
- {
- "CustomAction"
+ "Entry"
{
- "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_42E5D8567A2947CDBBF099635841D51C"
- {
- "Name" = "8:Primary output from CageServiceInstaller (Active)"
- "Condition" = "8:"
- "Object" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
- "FileType" = "3:1"
- "InstallAction" = "3:3"
- "Arguments" = "8:"
- "EntryPoint" = "8:"
- "Sequence" = "3:1"
- "Identifier" = "8:_1AA583CA_6F8F_4123_9142_DB939DB11750"
- "InstallerClass" = "11:TRUE"
- "CustomActionData" = "8:"
- }
- "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_77B002179F7E4648A6A1709556CD588C"
- {
- "Name" = "8:Primary output from CageServiceInstaller (Active)"
- "Condition" = "8:"
- "Object" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
- "FileType" = "3:1"
- "InstallAction" = "3:4"
- "Arguments" = "8:"
+ "MsmKey" = "8:_4C24B7DB4E4A4A81B84E9B25DF5A8647"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_5347D57FAF8620DA2E2AC617AB4E08BB"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_53DEAE752FAD25B34A449D89A2D923FD"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_54D66DBC42DCA98114ADD86BA30E25C5"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_54F5BAEACED9404CB73CCFF1317ECEB5"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_5BBF61CCD4341B5A3B3BB053F49C3965"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_5D2EF10E2B56ABDC26CA23DEFBCB4B88"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_5DD4DD0B74827E1F428CC4F75CA89949"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_5E24DB6AFDF0A973D1C65EF2CBD52B12"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_60B3206E2E67F514D938144D4DD0C086"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_61566E6953C5BEA94398223CCAF70228"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_632C74614A2A84B78CE3E621B62272D8"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_63677C0AB5F7D2EC0BC1D257A62A73ED"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_63AF181CABB14A408EE15B685CD7A728"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_66E1F262C1BFA830F4761D0981ADF657"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_674336673A2267736622E13F8669F62A"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_7096EEF4244C67042998119C27015F73"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_710B88F7D3836FF9237AA0FC8B11D7CB"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_7804B69B4E70477F81F409F2AE60194D"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_78DA53170EA1F3B5950B3E75253F07C9"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_7BFF8A70116547B1A6683FF47B5E3E62"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_7CAFED73B75810262D7736ECCE42F011"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8367362E667E948AFD8AE6203AA507EB"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_838E861404A9E84FCABCD5F8DC613CBE"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8A8ED1AABB68440AB0601DB450CCF386"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8B7445CC141A31A1709283039B4C6187"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8BD0F00D9AFF379DB31406D512D72B5F"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8C1E06B67A046E1183C6428409CB6057"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8D7AC36FA6BE4AAD055FE668EBCF5267"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8E6BA15B0E88FEB716DBECA0344726ED"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8EDBBA5735269C072B949D0C67C86ACD"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_8FFB50177DD5BA8E066A1CAA3F02CC6E"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9225268146BB459386642FBCC47E116A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_93BA4066D4ED31CE742DBB644DB7FECB"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_945BCC84EBD18CA36E968248A5A4504D"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_958E7C887864ED5AFF4D164BFAAAD9E8"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_95902747970F216E645BC3CFFB971CD7"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_959B4FAF39CED84CA5B6E66F781184AC"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9814B15E4FADA721B9EAEA6CC8912BC3"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9901A062F2B54E548B3E0FAFFF0CB99C"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9A8BD6989D81311A1DBD1F4B7BDE3A6D"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9AD50E84D1F865BC486E2317FEEF8358"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9B58476BAF0D42401B6BCEF76FCC259A"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_9D5B900411FAE269AEF81846468B13C1"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_A02164DFEFA849DBE626258EBBCC60A4"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_A0F7BA08311B3EC3E9A82B8B72E820FD"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_A2DF3F8CFFDB4156AAD89CFD6658E8CB"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_A9BF1F96E92374873E687211E9C4DC83"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_AB68ADD7FEEE631C25B71D2A1B96AAC3"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_AE0CA5D7FDCCBB78382954AA3E3F9645"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_AF73CDB9696D6F01B59CC3E65F68CC3D"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B03F43D9DF3F9C04E465B609EB0DEE4B"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B14E09F43EA3CDE2F420CD83ED002573"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B1920EA34C3916145D828636C657FB4E"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B213234F55036DFB2C7DA2DE35C086F6"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B37215485335162A8FBFE21D3EEA77ED"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B60CC96BFEC224983C427F67C487641B"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B73685C8ABA69CA445108E043DD47C9F"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B73685C8ABA69CA445108E043DD47C9F"
+ "OwnerKey" = "8:_FBDCA93B4DD114CF542311FBF4755CA2"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B7BB1FC4EC2EF1DDE74BEB6286C037DB"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BC71DDD269E0D10612A8E69DE4A1020B"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_AE0CA5D7FDCCBB78382954AA3E3F9645"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_14CC8A6F86AC246C8866B7A023FC257D"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_383FB7C273B16AF7B6D79AF0D18DFDE2"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_8367362E667E948AFD8AE6203AA507EB"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_BF625D5E67D4BFB82A1A330F6BECE214"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_1E66CB3AF7B67853058B7E82C3ED49E1"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_196D29FD0FE28373E29B98409C2BC6AE"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_D022573A185483B680E3688588A73199"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_8BD0F00D9AFF379DB31406D512D72B5F"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_710B88F7D3836FF9237AA0FC8B11D7CB"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_D6154AA5F5CEDC8F4C709B203D641B84"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_432764C20EFAAEAFB50BEEBD12D98DD1"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_F977CA76227A4B7E13BDDD1D24783ABC"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_46596CABB18D09DB06301B7B2602B7F1"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_CA820DF95FD57BB94B17AFEA3D6EE336"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_B03F43D9DF3F9C04E465B609EB0DEE4B"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_674336673A2267736622E13F8669F62A"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_D4CBD8C1F26C962664B16F69E0587682"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_0ED1F8C92C042F65AA55F652C101FBE5"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_03ED44E07D276F235D535922A4B99DBF"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_C243C1405A4828A3097B0FB2F6AB104E"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_4891769014FEE7BFA4495B40B49CDEE1"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_F09F2912F1F0E27DC56561B17D36EA93"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_D9157B22A701C99CEEF697ECF11B924B"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_2F2DC16615350D15EE34084F4447B4BF"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_F5021C387A067575678C19DD0918025B"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_13E55ED27505F92AAEC5BE814CA25E37"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_27650AA82AC2FC01E59FAE5C471E5D0C"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_5347D57FAF8620DA2E2AC617AB4E08BB"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_A02164DFEFA849DBE626258EBBCC60A4"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_C576204E889C20A0E64A106FE42DDEAA"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_216252A8BBD3E1949EEC4B1A8C7461AA"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_E3A00D9FA292C4900FD6B4428966FD58"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_0604570C392BED0C36219542A5F74786"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_E1326DD2DFD6CA14EAE4EBD7E2FA8E21"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_CE9921615B010F306E9BCF36EC662AFF"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_36DAA3EFECE5BDEC13E06A5F523B4DB6"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_4435F8361E260227BE8B8D1F2187F763"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_AB68ADD7FEEE631C25B71D2A1B96AAC3"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_5D2EF10E2B56ABDC26CA23DEFBCB4B88"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_C1B85C4E513382AE0A500E5581314614"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_37902116145D83E1287DD93463CE291B"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_E147161F1C5F5E615C6E56534D354D99"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_959B4FAF39CED84CA5B6E66F781184AC"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_28F02D15E2CC4CD6C49538C039B14D78"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_3CFED900173BECEED806865EB74E4812"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_61566E6953C5BEA94398223CCAF70228"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_D3E97DB13384B70BF72FE88F9A7848B7"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_5E24DB6AFDF0A973D1C65EF2CBD52B12"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_38A3118520088D878B30813B75315454"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_5BBF61CCD4341B5A3B3BB053F49C3965"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_D0030F1F0A040427A97EC85B7C513191"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_CB1B8B5297B62C3FF621FAE99B923672"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_CAD79A081AAA2BED53DA07B8C6A4BA14"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_49D6377250180DBCE84760AB73A1FE19"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_D9301F2506BDBC0059281EB61280AD2D"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_E6025768243311BEE850438B6C27930B"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_9AD50E84D1F865BC486E2317FEEF8358"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_A0F7BA08311B3EC3E9A82B8B72E820FD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_4393691D54DCE578D18623D1DA63E759"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_C225C47D4C49DDCF3AC3FBBB0974E7BF"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_04B0F7B55FC750E2D5EDDE03C9CB84E8"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_05BEC8E3A30679D9871409E92D7A6B6C"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_103DCBFA3BF151F964AFE89D05EC8EE8"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_2521A2F6ACE18CC576082C421F8AFB05"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_E7C52341E9941AEB4D709AC5D14F9D22"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_1BA3AC9261C605668404B9F2C44BCFE0"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_42961922B44A876D9E6F7BEFD5A13E0A"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_958E7C887864ED5AFF4D164BFAAAD9E8"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_C4761DB3A6CE86BF69C267529A8B08C9"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_7096EEF4244C67042998119C27015F73"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_9814B15E4FADA721B9EAEA6CC8912BC3"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_E5F83EF1F7978992978A53ED59B6531A"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_E06E4415B8045599D8387E45A6EEE325"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_F934A84117EBD44AB7C7AB2C7D5A28A9"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_78DA53170EA1F3B5950B3E75253F07C9"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_8C1E06B67A046E1183C6428409CB6057"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_8EDBBA5735269C072B949D0C67C86ACD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_C941DAF4C107820B74EB285F4C3F59C8"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_945BCC84EBD18CA36E968248A5A4504D"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF625D5E67D4BFB82A1A330F6BECE214"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_BF812707A575C00A270C60BADF3ACC17"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C1B85C4E513382AE0A500E5581314614"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C225C47D4C49DDCF3AC3FBBB0974E7BF"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C243C1405A4828A3097B0FB2F6AB104E"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C3367C67E1E7F81725751F812326466C"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C4761DB3A6CE86BF69C267529A8B08C9"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C4DA4B5B8B2CD3CDDFF5DED537A7437E"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C576204E889C20A0E64A106FE42DDEAA"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C65387F6518E049B38805DCE47B5640D"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C7ED9E2E6C0229D33E88808393ED9BC5"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_C941DAF4C107820B74EB285F4C3F59C8"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CA70FE36CA94B1C41FAD45C781A5C839"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CA820DF95FD57BB94B17AFEA3D6EE336"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CAD79A081AAA2BED53DA07B8C6A4BA14"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CAFD15850018C2B8EF458B2BD05707B1"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CAFD15850018C2B8EF458B2BD05707B1"
+ "OwnerKey" = "8:_283F324DB860CEB262A5CF47F2CC264D"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CB1B8B5297B62C3FF621FAE99B923672"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CB7238BB141FB95492A73720AA88E2F9"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CCCA0C0DE4C2E78B48B2E983593E76B6"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CCCA0C0DE4C2E78B48B2E983593E76B6"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CD5AE2556CE9808C7C09922ABC883801"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CDF3FA1DF0EB4D86940A3E55AB5E8871"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_CE9921615B010F306E9BCF36EC662AFF"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D0030F1F0A040427A97EC85B7C513191"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D022573A185483B680E3688588A73199"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D2D2DABAA52BFD145D2809E82A0CD64C"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D3BB1411EC1CA8500E15C62DD532605C"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D3E97DB13384B70BF72FE88F9A7848B7"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D4CBD8C1F26C962664B16F69E0587682"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D4FCA8686B15C44F393C5380CF6B123E"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D6154AA5F5CEDC8F4C709B203D641B84"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D7B902C0AF53E1866102BE2929E1EC10"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D8BCB77792F359588B1F7EC79B90D8B6"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D9157B22A701C99CEEF697ECF11B924B"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D9301F2506BDBC0059281EB61280AD2D"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_DD13E476939CD69C53A6C12ED5828426"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_DF07548511334F1D921BFB7F0926DD86"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E06E4415B8045599D8387E45A6EEE325"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E1326DD2DFD6CA14EAE4EBD7E2FA8E21"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E147161F1C5F5E615C6E56534D354D99"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E3A00D9FA292C4900FD6B4428966FD58"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E3AD1EA0CAC76BF7EC0A0802261804B2"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E5F83EF1F7978992978A53ED59B6531A"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E6025768243311BEE850438B6C27930B"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E7C52341E9941AEB4D709AC5D14F9D22"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E943CA2FAF6449929DEB63A8430A741B"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EA2AE292A8E1ACCB8D85895D63D943AF"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_ECC32C057D873C75EFAB460739362D6F"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EE48644F738FAF6F608738C768C19F32"
+ "OwnerKey" = "8:_7804B69B4E70477F81F409F2AE60194D"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EE48644F738FAF6F608738C768C19F32"
+ "OwnerKey" = "8:_1D9F727B52E2B783D351D3A563978BE0"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EF4B6F1AF9FE8033470A716D32B9ACBD"
+ "OwnerKey" = "8:_7804B69B4E70477F81F409F2AE60194D"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F006AD26F134960D766497CB176078D2"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F09F2912F1F0E27DC56561B17D36EA93"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F1554755465E51D469FE81E71D1413B1"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F1E810AF35024A60B5693314B1D4542D"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F34C3CBFA1DD9238FDFA2B056CFC8708"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F5021C387A067575678C19DD0918025B"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F934A84117EBD44AB7C7AB2C7D5A28A9"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F977CA76227A4B7E13BDDD1D24783ABC"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FBA8493A64611F9DA84D53481DFA1E95"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FBA8493A64611F9DA84D53481DFA1E95"
+ "OwnerKey" = "8:_E943CA2FAF6449929DEB63A8430A741B"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FBA8493A64611F9DA84D53481DFA1E95"
+ "OwnerKey" = "8:_7804B69B4E70477F81F409F2AE60194D"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FBDCA93B4DD114CF542311FBF4755CA2"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_FBDCA93B4DD114CF542311FBF4755CA2"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_BC71DDD269E0D10612A8E69DE4A1020B"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_9A8BD6989D81311A1DBD1F4B7BDE3A6D"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_9901A062F2B54E548B3E0FAFFF0CB99C"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_F34C3CBFA1DD9238FDFA2B056CFC8708"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_F1554755465E51D469FE81E71D1413B1"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_B213234F55036DFB2C7DA2DE35C086F6"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_0A9C7D3EAF67D8D5498D10CBDA00C464"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_54F5BAEACED9404CB73CCFF1317ECEB5"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_838E861404A9E84FCABCD5F8DC613CBE"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_54D66DBC42DCA98114ADD86BA30E25C5"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_B1920EA34C3916145D828636C657FB4E"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_8E6BA15B0E88FEB716DBECA0344726ED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_D7B902C0AF53E1866102BE2929E1EC10"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_283F324DB860CEB262A5CF47F2CC264D"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_CAFD15850018C2B8EF458B2BD05707B1"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_B14E09F43EA3CDE2F420CD83ED002573"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_8D7AC36FA6BE4AAD055FE668EBCF5267"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_9B58476BAF0D42401B6BCEF76FCC259A"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_8FFB50177DD5BA8E066A1CAA3F02CC6E"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_BF812707A575C00A270C60BADF3ACC17"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_5DD4DD0B74827E1F428CC4F75CA89949"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_A9BF1F96E92374873E687211E9C4DC83"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_2CCAC0263BB1070CE1E672B97D3A6BB9"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_40C4E63BE603F64D57323B523CD3CCAD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_F006AD26F134960D766497CB176078D2"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_DD13E476939CD69C53A6C12ED5828426"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_CA70FE36CA94B1C41FAD45C781A5C839"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_632C74614A2A84B78CE3E621B62272D8"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_E3AD1EA0CAC76BF7EC0A0802261804B2"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_32F953E30A67181CDDB7C0D7085C32D8"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_148BFA3D143DCAB54B082A98FA9128B2"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_4BDBF96E67947E5C1E8DA4603BD0831C"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_EA2AE292A8E1ACCB8D85895D63D943AF"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_B37215485335162A8FBFE21D3EEA77ED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_D2D2DABAA52BFD145D2809E82A0CD64C"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_0AEAFF37D3F4BEF09E64168677E847A7"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_035C580B15FC1A256CBD0398CC5885AE"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_D8BCB77792F359588B1F7EC79B90D8B6"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_0A4C51B30CD211F2A51A6292AA627D1F"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_C7ED9E2E6C0229D33E88808393ED9BC5"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_D4FCA8686B15C44F393C5380CF6B123E"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_60B3206E2E67F514D938144D4DD0C086"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_8B7445CC141A31A1709283039B4C6187"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_ECC32C057D873C75EFAB460739362D6F"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_C4DA4B5B8B2CD3CDDFF5DED537A7437E"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_C65387F6518E049B38805DCE47B5640D"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_9D5B900411FAE269AEF81846468B13C1"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_66E1F262C1BFA830F4761D0981ADF657"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_B60CC96BFEC224983C427F67C487641B"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_A2DF3F8CFFDB4156AAD89CFD6658E8CB"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_63677C0AB5F7D2EC0BC1D257A62A73ED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_CD5AE2556CE9808C7C09922ABC883801"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_AF73CDB9696D6F01B59CC3E65F68CC3D"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_B73685C8ABA69CA445108E043DD47C9F"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_4A2BE4C34598D8C4D1736E160EC230DD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_B7BB1FC4EC2EF1DDE74BEB6286C037DB"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_95902747970F216E645BC3CFFB971CD7"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_0DCF7DDB011F66CE6EFFAB890ABB54EB"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_7CAFED73B75810262D7736ECCE42F011"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_CB7238BB141FB95492A73720AA88E2F9"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_53DEAE752FAD25B34A449D89A2D923FD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_93BA4066D4ED31CE742DBB644DB7FECB"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_353F51099D587FFE55A071E76F175B8B"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_C3367C67E1E7F81725751F812326466C"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_D3BB1411EC1CA8500E15C62DD532605C"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_CCCA0C0DE4C2E78B48B2E983593E76B6"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_4AC827C0665B497E4327AF48EBF1BD4E"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_0EA3B0676FD563806888707157836A28"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_BF3B974444DE732260E6F4DCC2B13182"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_E943CA2FAF6449929DEB63A8430A741B"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_7804B69B4E70477F81F409F2AE60194D"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_09FC33C69A21B22C9FF3A748E0F64B86"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_EF4B6F1AF9FE8033470A716D32B9ACBD"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_1D9F727B52E2B783D351D3A563978BE0"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_EE48644F738FAF6F608738C768C19F32"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_FBA8493A64611F9DA84D53481DFA1E95"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ }
+ "Configurations"
+ {
+ "Debug"
+ {
+ "DisplayName" = "8:Debug"
+ "IsDebugOnly" = "11:TRUE"
+ "IsReleaseOnly" = "11:FALSE"
+ "OutputFilename" = "8:Debug\\SharkCageInstaller.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}:.NETFramework,Version=v4.6.1"
+ {
+ "Name" = "8:Microsoft .NET Framework 4.6.1 (x86 and x64)"
+ "ProductCode" = "8:.NETFramework,Version=v4.6.1"
+ }
+ }
+ }
+ }
+ "Release"
+ {
+ "DisplayName" = "8:Release"
+ "IsDebugOnly" = "11:FALSE"
+ "IsReleaseOnly" = "11:TRUE"
+ "OutputFilename" = "8:Release\\SharkCage.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}:.NETFramework,Version=v4.6.1"
+ {
+ "Name" = "8:Microsoft .NET Framework 4.6.1 (x86 and x64)"
+ "ProductCode" = "8:.NETFramework,Version=v4.6.1"
+ }
+ }
+ }
+ }
+ }
+ "Deployable"
+ {
+ "CustomAction"
+ {
+ "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_42E5D8567A2947CDBBF099635841D51C"
+ {
+ "Name" = "8:Primary output from CageServiceInstaller (Active)"
+ "Condition" = "8:"
+ "Object" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "FileType" = "3:1"
+ "InstallAction" = "3:3"
+ "Arguments" = "8:"
+ "EntryPoint" = "8:"
+ "Sequence" = "3:1"
+ "Identifier" = "8:_1AA583CA_6F8F_4123_9142_DB939DB11750"
+ "InstallerClass" = "11:TRUE"
+ "CustomActionData" = "8:"
+ }
+ "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_77B002179F7E4648A6A1709556CD588C"
+ {
+ "Name" = "8:Primary output from CageServiceInstaller (Active)"
+ "Condition" = "8:"
+ "Object" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "FileType" = "3:1"
+ "InstallAction" = "3:4"
+ "Arguments" = "8:"
"EntryPoint" = "8:"
"Sequence" = "3:1"
"Identifier" = "8:_19A6F209_E373_4625_9033_27CCC11BB903"
"InstallerClass" = "11:TRUE"
"CustomActionData" = "8:"
}
- "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_E0178DF53FDB4C8D93971D582473C2E2"
+ "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_E0178DF53FDB4C8D93971D582473C2E2"
+ {
+ "Name" = "8:Primary output from CageServiceInstaller (Active)"
+ "Condition" = "8:"
+ "Object" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "FileType" = "3:1"
+ "InstallAction" = "3:1"
+ "Arguments" = "8:"
+ "EntryPoint" = "8:"
+ "Sequence" = "3:1"
+ "Identifier" = "8:_91C3ACAA_A973_4222_BEA5_9ECF678D1A88"
+ "InstallerClass" = "11:TRUE"
+ "CustomActionData" = "8:/DP_TargetDir=\"[TARGETDIR]\\\""
+ }
+ "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_F086C91AB5A24E92A30AA8094A913EB3"
+ {
+ "Name" = "8:Primary output from CageServiceInstaller (Active)"
+ "Condition" = "8:"
+ "Object" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
+ "FileType" = "3:1"
+ "InstallAction" = "3:2"
+ "Arguments" = "8:"
+ "EntryPoint" = "8:"
+ "Sequence" = "3:1"
+ "Identifier" = "8:_B7A6CC79_08F2_4256_BB8D_AB630A501160"
+ "InstallerClass" = "11:TRUE"
+ "CustomActionData" = "8:/DP_TargetDir=\"[TARGETDIR]\\\""
+ }
+ }
+ "DefaultFeature"
+ {
+ "Name" = "8:DefaultFeature"
+ "Title" = "8:"
+ "Description" = "8:"
+ }
+ "ExternalPersistence"
+ {
+ "LaunchCondition"
+ {
+ "{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_D21C8104457E412785C3040BEEFE91F9"
+ {
+ "Name" = "8:.NET Framework"
+ "Message" = "8:[VSDNETMSG]"
+ "FrameworkVersion" = "8:.NETFramework,Version=v4.6.1"
+ "AllowLaterVersions" = "11:FALSE"
+ "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=671728"
+ }
+ }
+ }
+ "File"
+ {
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_035C580B15FC1A256CBD0398CC5885AE"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_035C580B15FC1A256CBD0398CC5885AE"
+ {
+ "Name" = "8:System.Runtime.Serialization.Xml.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.Serialization.Xml.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_03ED44E07D276F235D535922A4B99DBF"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Csp, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_03ED44E07D276F235D535922A4B99DBF"
+ {
+ "Name" = "8:System.Security.Cryptography.Csp.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Security.Cryptography.Csp.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_04B0F7B55FC750E2D5EDDE03C9CB84E8"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Dynamic.Runtime, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_04B0F7B55FC750E2D5EDDE03C9CB84E8"
+ {
+ "Name" = "8:System.Dynamic.Runtime.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Dynamic.Runtime.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_05BEC8E3A30679D9871409E92D7A6B6C"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Drawing.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_05BEC8E3A30679D9871409E92D7A6B6C"
+ {
+ "Name" = "8:System.Drawing.Primitives.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Drawing.Primitives.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_0604570C392BED0C36219542A5F74786"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Reflection.Extensions, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_0604570C392BED0C36219542A5F74786"
+ {
+ "Name" = "8:System.Reflection.Extensions.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Reflection.Extensions.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_09FC33C69A21B22C9FF3A748E0F64B86"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_09FC33C69A21B22C9FF3A748E0F64B86"
+ {
+ "Name" = "8:Newtonsoft.Json.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:Newtonsoft.Json.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_0A4C51B30CD211F2A51A6292AA627D1F"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Json, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_0A4C51B30CD211F2A51A6292AA627D1F"
+ {
+ "Name" = "8:System.Runtime.Serialization.Json.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.Serialization.Json.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_0A9C7D3EAF67D8D5498D10CBDA00C464"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Reflection.Emit, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ "ScatterAssemblies"
+ {
+ "_0A9C7D3EAF67D8D5498D10CBDA00C464"
+ {
+ "Name" = "8:System.Reflection.Emit.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Reflection.Emit.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_0AEAFF37D3F4BEF09E64168677E847A7"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_0AEAFF37D3F4BEF09E64168677E847A7"
+ {
+ "Name" = "8:System.Runtime.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_0DCF7DDB011F66CE6EFFAB890ABB54EB"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tools, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_0DCF7DDB011F66CE6EFFAB890ABB54EB"
+ {
+ "Name" = "8:System.Diagnostics.Tools.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Diagnostics.Tools.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_0EA3B0676FD563806888707157836A28"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.WindowsRuntime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ "ScatterAssemblies"
+ {
+ "_0EA3B0676FD563806888707157836A28"
+ {
+ "Name" = "8:System.Runtime.InteropServices.WindowsRuntime.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.InteropServices.WindowsRuntime.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_0ED1F8C92C042F65AA55F652C101FBE5"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Encoding, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_0ED1F8C92C042F65AA55F652C101FBE5"
+ {
+ "Name" = "8:System.Security.Cryptography.Encoding.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Security.Cryptography.Encoding.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_103DCBFA3BF151F964AFE89D05EC8EE8"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Diagnostics.TraceSource, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_103DCBFA3BF151F964AFE89D05EC8EE8"
+ {
+ "Name" = "8:System.Diagnostics.TraceSource.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Diagnostics.TraceSource.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_13E55ED27505F92AAEC5BE814CA25E37"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime.Extensions, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_13E55ED27505F92AAEC5BE814CA25E37"
+ {
+ "Name" = "8:System.Runtime.Extensions.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.Extensions.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_148BFA3D143DCAB54B082A98FA9128B2"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Threading.Tasks.Parallel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_148BFA3D143DCAB54B082A98FA9128B2"
+ {
+ "Name" = "8:System.Threading.Tasks.Parallel.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Threading.Tasks.Parallel.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_14CC8A6F86AC246C8866B7A023FC257D"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Xml.XPath, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_14CC8A6F86AC246C8866B7A023FC257D"
+ {
+ "Name" = "8:System.Xml.XPath.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Xml.XPath.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_196D29FD0FE28373E29B98409C2BC6AE"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Threading.Timer, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_196D29FD0FE28373E29B98409C2BC6AE"
+ {
+ "Name" = "8:System.Threading.Timer.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Threading.Timer.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_1BA3AC9261C605668404B9F2C44BCFE0"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Diagnostics.Process, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_1BA3AC9261C605668404B9F2C44BCFE0"
+ {
+ "Name" = "8:System.Diagnostics.Process.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Diagnostics.Process.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_1D9F727B52E2B783D351D3A563978BE0"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:AForge.Video, Version=2.2.5.0, Culture=neutral, PublicKeyToken=cbfb6e07d173c401, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_1D9F727B52E2B783D351D3A563978BE0"
+ {
+ "Name" = "8:AForge.Video.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:AForge.Video.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_1E66CB3AF7B67853058B7E82C3ED49E1"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Xml.ReaderWriter, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_1E66CB3AF7B67853058B7E82C3ED49E1"
+ {
+ "Name" = "8:System.Xml.ReaderWriter.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Xml.ReaderWriter.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_216252A8BBD3E1949EEC4B1A8C7461AA"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Resources.Reader, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_216252A8BBD3E1949EEC4B1A8C7461AA"
+ {
+ "Name" = "8:System.Resources.Reader.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Resources.Reader.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_23949B9F3DAD4E14A137ACF256F92A3C"
+ {
+ "SourcePath" = "8:..\\..\\3rd_party_licenses\\nlohman-json.txt"
+ "TargetName" = "8:nlohman-json.txt"
+ "Tag" = "8:"
+ "Folder" = "8:_4A2B9165170246499CA780AF8C49C41C"
+ "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}:_2521A2F6ACE18CC576082C421F8AFB05"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tools, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_2521A2F6ACE18CC576082C421F8AFB05"
+ {
+ "Name" = "8:System.Diagnostics.Tools.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Diagnostics.Tools.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_27650AA82AC2FC01E59FAE5C471E5D0C"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_27650AA82AC2FC01E59FAE5C471E5D0C"
+ {
+ "Name" = "8:System.Runtime.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_283F324DB860CEB262A5CF47F2CC264D"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Xml, Version=4.1.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_283F324DB860CEB262A5CF47F2CC264D"
+ {
+ "Name" = "8:System.Runtime.Serialization.Xml.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.Serialization.Xml.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_28F02D15E2CC4CD6C49538C039B14D78"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Net.NameResolution, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_28F02D15E2CC4CD6C49538C039B14D78"
+ {
+ "Name" = "8:System.Net.NameResolution.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Net.NameResolution.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_2CCAC0263BB1070CE1E672B97D3A6BB9"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Data.Common, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_2CCAC0263BB1070CE1E672B97D3A6BB9"
+ {
+ "Name" = "8:System.Data.Common.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Data.Common.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_2F2DC16615350D15EE34084F4447B4BF"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_2F2DC16615350D15EE34084F4447B4BF"
+ {
+ "Name" = "8:System.Runtime.InteropServices.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.InteropServices.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_32F953E30A67181CDDB7C0D7085C32D8"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Threading.Tasks, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_32F953E30A67181CDDB7C0D7085C32D8"
+ {
+ "Name" = "8:System.Threading.Tasks.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Threading.Tasks.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_353F51099D587FFE55A071E76F175B8B"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.ComponentModel.Annotations, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_353F51099D587FFE55A071E76F175B8B"
+ {
+ "Name" = "8:System.ComponentModel.Annotations.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.ComponentModel.Annotations.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_36DAA3EFECE5BDEC13E06A5F523B4DB6"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Net.WebSockets, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_36DAA3EFECE5BDEC13E06A5F523B4DB6"
+ {
+ "Name" = "8:System.Net.WebSockets.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Net.WebSockets.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_37902116145D83E1287DD93463CE291B"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Net.Primitives, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_37902116145D83E1287DD93463CE291B"
+ {
+ "Name" = "8:System.Net.Primitives.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Net.Primitives.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_383FB7C273B16AF7B6D79AF0D18DFDE2"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Xml.XmlSerializer, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_383FB7C273B16AF7B6D79AF0D18DFDE2"
+ {
+ "Name" = "8:System.Xml.XmlSerializer.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Xml.XmlSerializer.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_38A3118520088D878B30813B75315454"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.IO.UnmanagedMemoryStream, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_38A3118520088D878B30813B75315454"
+ {
+ "Name" = "8:System.IO.UnmanagedMemoryStream.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.IO.UnmanagedMemoryStream.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_3CFED900173BECEED806865EB74E4812"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Linq.Queryable, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_3CFED900173BECEED806865EB74E4812"
+ {
+ "Name" = "8:System.Linq.Queryable.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Linq.Queryable.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_40C4E63BE603F64D57323B523CD3CCAD"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:netfx.force.conflicts, Version=0.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_40C4E63BE603F64D57323B523CD3CCAD"
+ {
+ "Name" = "8:netfx.force.conflicts.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:netfx.force.conflicts.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_42961922B44A876D9E6F7BEFD5A13E0A"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Diagnostics.FileVersionInfo, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_42961922B44A876D9E6F7BEFD5A13E0A"
+ {
+ "Name" = "8:System.Diagnostics.FileVersionInfo.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Diagnostics.FileVersionInfo.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_432764C20EFAAEAFB50BEEBD12D98DD1"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Threading, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_432764C20EFAAEAFB50BEEBD12D98DD1"
+ {
+ "Name" = "8:System.Threading.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Threading.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_4393691D54DCE578D18623D1DA63E759"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Globalization, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_4393691D54DCE578D18623D1DA63E759"
+ {
+ "Name" = "8:System.Globalization.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Globalization.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_4435F8361E260227BE8B8D1F2187F763"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Net.WebSockets.Client, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_4435F8361E260227BE8B8D1F2187F763"
+ {
+ "Name" = "8:System.Net.WebSockets.Client.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Net.WebSockets.Client.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_46596CABB18D09DB06301B7B2602B7F1"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Text.Encoding.Extensions, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_46596CABB18D09DB06301B7B2602B7F1"
+ {
+ "Name" = "8:System.Text.Encoding.Extensions.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Text.Encoding.Extensions.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_4891769014FEE7BFA4495B40B49CDEE1"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Json, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_4891769014FEE7BFA4495B40B49CDEE1"
+ {
+ "Name" = "8:System.Runtime.Serialization.Json.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.Serialization.Json.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_49D6377250180DBCE84760AB73A1FE19"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.Primitives, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_49D6377250180DBCE84760AB73A1FE19"
+ {
+ "Name" = "8:System.IO.FileSystem.Primitives.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.IO.FileSystem.Primitives.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_4A2BE4C34598D8C4D1736E160EC230DD"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Globalization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_4A2BE4C34598D8C4D1736E160EC230DD"
+ {
+ "Name" = "8:System.Globalization.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Globalization.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_4AC827C0665B497E4327AF48EBF1BD4E"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.ServiceModel.NetTcp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ "ScatterAssemblies"
+ {
+ "_4AC827C0665B497E4327AF48EBF1BD4E"
+ {
+ "Name" = "8:System.ServiceModel.NetTcp.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.ServiceModel.NetTcp.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_4BDBF96E67947E5C1E8DA4603BD0831C"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Text.RegularExpressions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_4BDBF96E67947E5C1E8DA4603BD0831C"
+ {
+ "Name" = "8:System.Text.RegularExpressions.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Text.RegularExpressions.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_4C24B7DB4E4A4A81B84E9B25DF5A8647"
+ {
+ "SourcePath" = "8:..\\..\\3rd_party_licenses\\cpp_base64.txt"
+ "TargetName" = "8:cpp_base64.txt"
+ "Tag" = "8:"
+ "Folder" = "8:_4A2B9165170246499CA780AF8C49C41C"
+ "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}:_5347D57FAF8620DA2E2AC617AB4E08BB"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime.CompilerServices.VisualC, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_5347D57FAF8620DA2E2AC617AB4E08BB"
+ {
+ "Name" = "8:System.Runtime.CompilerServices.VisualC.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.CompilerServices.VisualC.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_53DEAE752FAD25B34A449D89A2D923FD"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.ComponentModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_53DEAE752FAD25B34A449D89A2D923FD"
+ {
+ "Name" = "8:System.ComponentModel.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.ComponentModel.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_54D66DBC42DCA98114ADD86BA30E25C5"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.ValueTuple, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_54D66DBC42DCA98114ADD86BA30E25C5"
+ {
+ "Name" = "8:System.ValueTuple.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.ValueTuple.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_54F5BAEACED9404CB73CCFF1317ECEB5"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.ComponentModel.Annotations, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ "ScatterAssemblies"
+ {
+ "_54F5BAEACED9404CB73CCFF1317ECEB5"
+ {
+ "Name" = "8:System.ComponentModel.Annotations.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.ComponentModel.Annotations.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_5BBF61CCD4341B5A3B3BB053F49C3965"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.IO.Pipes, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_5BBF61CCD4341B5A3B3BB053F49C3965"
+ {
+ "Name" = "8:System.IO.Pipes.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.IO.Pipes.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_5D2EF10E2B56ABDC26CA23DEFBCB4B88"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Net.Security, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_5D2EF10E2B56ABDC26CA23DEFBCB4B88"
+ {
+ "Name" = "8:System.Net.Security.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Net.Security.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_5DD4DD0B74827E1F428CC4F75CA89949"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tracing, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_5DD4DD0B74827E1F428CC4F75CA89949"
+ {
+ "Name" = "8:System.Diagnostics.Tracing.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Diagnostics.Tracing.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_5E24DB6AFDF0A973D1C65EF2CBD52B12"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Linq, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_5E24DB6AFDF0A973D1C65EF2CBD52B12"
+ {
+ "Name" = "8:System.Linq.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Linq.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_60B3206E2E67F514D938144D4DD0C086"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_60B3206E2E67F514D938144D4DD0C086"
+ {
+ "Name" = "8:System.Runtime.Extensions.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.Extensions.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_61566E6953C5BEA94398223CCAF70228"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Linq.Parallel, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_61566E6953C5BEA94398223CCAF70228"
+ {
+ "Name" = "8:System.Linq.Parallel.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Linq.Parallel.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_632C74614A2A84B78CE3E621B62272D8"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Threading, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_632C74614A2A84B78CE3E621B62272D8"
+ {
+ "Name" = "8:System.Threading.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Threading.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_63677C0AB5F7D2EC0BC1D257A62A73ED"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Linq.Parallel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_63677C0AB5F7D2EC0BC1D257A62A73ED"
+ {
+ "Name" = "8:System.Linq.Parallel.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Linq.Parallel.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_66E1F262C1BFA830F4761D0981ADF657"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Net.NetworkInformation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_66E1F262C1BFA830F4761D0981ADF657"
+ {
+ "Name" = "8:System.Net.NetworkInformation.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Net.NetworkInformation.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_674336673A2267736622E13F8669F62A"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.X509Certificates, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_674336673A2267736622E13F8669F62A"
+ {
+ "Name" = "8:System.Security.Cryptography.X509Certificates.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Security.Cryptography.X509Certificates.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_7096EEF4244C67042998119C27015F73"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Console, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_7096EEF4244C67042998119C27015F73"
+ {
+ "Name" = "8:System.Console.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Console.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_710B88F7D3836FF9237AA0FC8B11D7CB"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Threading.Tasks.Parallel, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_710B88F7D3836FF9237AA0FC8B11D7CB"
+ {
+ "Name" = "8:System.Threading.Tasks.Parallel.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Threading.Tasks.Parallel.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_78DA53170EA1F3B5950B3E75253F07C9"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Collections.Specialized, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_78DA53170EA1F3B5950B3E75253F07C9"
+ {
+ "Name" = "8:System.Collections.Specialized.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Collections.Specialized.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_7BFF8A70116547B1A6683FF47B5E3E62"
+ {
+ "SourcePath" = "8:..\\..\\3rd_party_licenses\\asio.txt"
+ "TargetName" = "8:asio.txt"
+ "Tag" = "8:"
+ "Folder" = "8:_4A2B9165170246499CA780AF8C49C41C"
+ "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}:_7CAFED73B75810262D7736ECCE42F011"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Diagnostics.Debug, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_7CAFED73B75810262D7736ECCE42F011"
+ {
+ "Name" = "8:System.Diagnostics.Debug.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Diagnostics.Debug.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_8367362E667E948AFD8AE6203AA507EB"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Xml.XmlDocument, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_8367362E667E948AFD8AE6203AA507EB"
+ {
+ "Name" = "8:System.Xml.XmlDocument.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Xml.XmlDocument.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_838E861404A9E84FCABCD5F8DC613CBE"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Xml.XPath.XDocument, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_838E861404A9E84FCABCD5F8DC613CBE"
+ {
+ "Name" = "8:System.Xml.XPath.XDocument.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Xml.XPath.XDocument.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_8B7445CC141A31A1709283039B4C6187"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Resources.ResourceManager, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_8B7445CC141A31A1709283039B4C6187"
+ {
+ "Name" = "8:System.Resources.ResourceManager.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Resources.ResourceManager.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_8BD0F00D9AFF379DB31406D512D72B5F"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Threading.Thread, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_8BD0F00D9AFF379DB31406D512D72B5F"
+ {
+ "Name" = "8:System.Threading.Thread.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Threading.Thread.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_8C1E06B67A046E1183C6428409CB6057"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Collections.NonGeneric, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_8C1E06B67A046E1183C6428409CB6057"
+ {
+ "Name" = "8:System.Collections.NonGeneric.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Collections.NonGeneric.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_8D7AC36FA6BE4AAD055FE668EBCF5267"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Net.Sockets, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_8D7AC36FA6BE4AAD055FE668EBCF5267"
+ {
+ "Name" = "8:System.Net.Sockets.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Net.Sockets.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_8E6BA15B0E88FEB716DBECA0344726ED"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Security.SecureString, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_8E6BA15B0E88FEB716DBECA0344726ED"
+ {
+ "Name" = "8:System.Security.SecureString.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Security.SecureString.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_8EDBBA5735269C072B949D0C67C86ACD"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Collections, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_8EDBBA5735269C072B949D0C67C86ACD"
+ {
+ "Name" = "8:System.Collections.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Collections.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_8FFB50177DD5BA8E066A1CAA3F02CC6E"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_8FFB50177DD5BA8E066A1CAA3F02CC6E"
+ {
+ "Name" = "8:System.IO.Compression.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.IO.Compression.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_93BA4066D4ED31CE742DBB644DB7FECB"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.ComponentModel.EventBasedAsync, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_93BA4066D4ED31CE742DBB644DB7FECB"
+ {
+ "Name" = "8:System.ComponentModel.EventBasedAsync.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.ComponentModel.EventBasedAsync.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_945BCC84EBD18CA36E968248A5A4504D"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.AppContext, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_945BCC84EBD18CA36E968248A5A4504D"
+ {
+ "Name" = "8:System.AppContext.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.AppContext.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_958E7C887864ED5AFF4D164BFAAAD9E8"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Diagnostics.Debug, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_958E7C887864ED5AFF4D164BFAAAD9E8"
+ {
+ "Name" = "8:System.Diagnostics.Debug.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Diagnostics.Debug.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_95902747970F216E645BC3CFFB971CD7"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tracing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_95902747970F216E645BC3CFFB971CD7"
+ {
+ "Name" = "8:System.Diagnostics.Tracing.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Diagnostics.Tracing.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_959B4FAF39CED84CA5B6E66F781184AC"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Net.NetworkInformation, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_959B4FAF39CED84CA5B6E66F781184AC"
+ {
+ "Name" = "8:System.Net.NetworkInformation.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Net.NetworkInformation.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_9814B15E4FADA721B9EAEA6CC8912BC3"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.ComponentModel.TypeConverter, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_9814B15E4FADA721B9EAEA6CC8912BC3"
+ {
+ "Name" = "8:System.ComponentModel.TypeConverter.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.ComponentModel.TypeConverter.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_9901A062F2B54E548B3E0FAFFF0CB99C"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.ServiceModel.Http, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ "ScatterAssemblies"
+ {
+ "_9901A062F2B54E548B3E0FAFFF0CB99C"
+ {
+ "Name" = "8:System.ServiceModel.Http.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.ServiceModel.Http.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_9A8BD6989D81311A1DBD1F4B7BDE3A6D"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.ServiceModel.Primitives, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ "ScatterAssemblies"
+ {
+ "_9A8BD6989D81311A1DBD1F4B7BDE3A6D"
+ {
+ "Name" = "8:System.ServiceModel.Primitives.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.ServiceModel.Primitives.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_9AD50E84D1F865BC486E2317FEEF8358"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.IO, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_9AD50E84D1F865BC486E2317FEEF8358"
+ {
+ "Name" = "8:System.IO.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.IO.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_9B58476BAF0D42401B6BCEF76FCC259A"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_9B58476BAF0D42401B6BCEF76FCC259A"
+ {
+ "Name" = "8:System.Net.Http.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Net.Http.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_9D5B900411FAE269AEF81846468B13C1"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.ObjectModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_9D5B900411FAE269AEF81846468B13C1"
+ {
+ "Name" = "8:System.ObjectModel.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.ObjectModel.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_A02164DFEFA849DBE626258EBBCC60A4"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Resources.Writer, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_A02164DFEFA849DBE626258EBBCC60A4"
+ {
+ "Name" = "8:System.Resources.Writer.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Resources.Writer.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_A0F7BA08311B3EC3E9A82B8B72E820FD"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.IO.Compression.ZipFile, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_A0F7BA08311B3EC3E9A82B8B72E820FD"
+ {
+ "Name" = "8:System.IO.Compression.ZipFile.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.IO.Compression.ZipFile.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_A2DF3F8CFFDB4156AAD89CFD6658E8CB"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Linq.Queryable, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_A2DF3F8CFFDB4156AAD89CFD6658E8CB"
+ {
+ "Name" = "8:System.Linq.Queryable.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Linq.Queryable.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_A9BF1F96E92374873E687211E9C4DC83"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Diagnostics.StackTrace, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_A9BF1F96E92374873E687211E9C4DC83"
+ {
+ "Name" = "8:System.Diagnostics.StackTrace.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Diagnostics.StackTrace.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_AB68ADD7FEEE631C25B71D2A1B96AAC3"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Net.WebHeaderCollection, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_AB68ADD7FEEE631C25B71D2A1B96AAC3"
+ {
+ "Name" = "8:System.Net.WebHeaderCollection.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Net.WebHeaderCollection.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_AE0CA5D7FDCCBB78382954AA3E3F9645"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:Microsoft.Win32.Primitives, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_AE0CA5D7FDCCBB78382954AA3E3F9645"
+ {
+ "Name" = "8:Microsoft.Win32.Primitives.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:Microsoft.Win32.Primitives.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_AF73CDB9696D6F01B59CC3E65F68CC3D"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.IO, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_AF73CDB9696D6F01B59CC3E65F68CC3D"
+ {
+ "Name" = "8:System.IO.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.IO.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_B03F43D9DF3F9C04E465B609EB0DEE4B"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Security.Principal, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_B03F43D9DF3F9C04E465B609EB0DEE4B"
+ {
+ "Name" = "8:System.Security.Principal.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Security.Principal.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_B14E09F43EA3CDE2F420CD83ED002573"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.RuntimeInformation, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_B14E09F43EA3CDE2F420CD83ED002573"
+ {
+ "Name" = "8:System.Runtime.InteropServices.RuntimeInformation.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.InteropServices.RuntimeInformation.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_B1920EA34C3916145D828636C657FB4E"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Threading.Overlapped, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_B1920EA34C3916145D828636C657FB4E"
+ {
+ "Name" = "8:System.Threading.Overlapped.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Threading.Overlapped.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_B213234F55036DFB2C7DA2DE35C086F6"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.ILGeneration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ "ScatterAssemblies"
+ {
+ "_B213234F55036DFB2C7DA2DE35C086F6"
+ {
+ "Name" = "8:System.Reflection.Emit.ILGeneration.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Reflection.Emit.ILGeneration.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_B37215485335162A8FBFE21D3EEA77ED"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Text.Encoding.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_B37215485335162A8FBFE21D3EEA77ED"
+ {
+ "Name" = "8:System.Text.Encoding.Extensions.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Text.Encoding.Extensions.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_B60CC96BFEC224983C427F67C487641B"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_B60CC96BFEC224983C427F67C487641B"
+ {
+ "Name" = "8:System.Linq.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Linq.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_B73685C8ABA69CA445108E043DD47C9F"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_B73685C8ABA69CA445108E043DD47C9F"
+ {
+ "Name" = "8:System.IO.Compression.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.IO.Compression.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_B7BB1FC4EC2EF1DDE74BEB6286C037DB"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Dynamic.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_B7BB1FC4EC2EF1DDE74BEB6286C037DB"
+ {
+ "Name" = "8:System.Dynamic.Runtime.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Dynamic.Runtime.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_BC71DDD269E0D10612A8E69DE4A1020B"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.ServiceModel.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ "ScatterAssemblies"
+ {
+ "_BC71DDD269E0D10612A8E69DE4A1020B"
+ {
+ "Name" = "8:System.ServiceModel.Security.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.ServiceModel.Security.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_BF3B974444DE732260E6F4DCC2B13182"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_BF3B974444DE732260E6F4DCC2B13182"
+ {
+ "Name" = "8:netstandard.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:netstandard.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_BF625D5E67D4BFB82A1A330F6BECE214"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Xml.XDocument, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_BF625D5E67D4BFB82A1A330F6BECE214"
+ {
+ "Name" = "8:System.Xml.XDocument.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Xml.XDocument.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_BF812707A575C00A270C60BADF3ACC17"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Globalization.Extensions, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_BF812707A575C00A270C60BADF3ACC17"
+ {
+ "Name" = "8:System.Globalization.Extensions.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Globalization.Extensions.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_C1B85C4E513382AE0A500E5581314614"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Net.Requests, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_C1B85C4E513382AE0A500E5581314614"
+ {
+ "Name" = "8:System.Net.Requests.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Net.Requests.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_C225C47D4C49DDCF3AC3FBBB0974E7BF"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Globalization.Calendars, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_C225C47D4C49DDCF3AC3FBBB0974E7BF"
+ {
+ "Name" = "8:System.Globalization.Calendars.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Globalization.Calendars.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_C243C1405A4828A3097B0FB2F6AB104E"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Security.Claims, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_C243C1405A4828A3097B0FB2F6AB104E"
+ {
+ "Name" = "8:System.Security.Claims.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Security.Claims.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_C3367C67E1E7F81725751F812326466C"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Collections, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_C3367C67E1E7F81725751F812326466C"
+ {
+ "Name" = "8:System.Collections.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Collections.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_C4761DB3A6CE86BF69C267529A8B08C9"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Diagnostics.Contracts, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_C4761DB3A6CE86BF69C267529A8B08C9"
+ {
+ "Name" = "8:System.Diagnostics.Contracts.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Diagnostics.Contracts.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_C4DA4B5B8B2CD3CDDFF5DED537A7437E"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Reflection.Primitives, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_C4DA4B5B8B2CD3CDDFF5DED537A7437E"
+ {
+ "Name" = "8:System.Reflection.Primitives.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Reflection.Primitives.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_C576204E889C20A0E64A106FE42DDEAA"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Resources.ResourceManager, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_C576204E889C20A0E64A106FE42DDEAA"
+ {
+ "Name" = "8:System.Resources.ResourceManager.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Resources.ResourceManager.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_C65387F6518E049B38805DCE47B5640D"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Reflection.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_C65387F6518E049B38805DCE47B5640D"
+ {
+ "Name" = "8:System.Reflection.Extensions.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Reflection.Extensions.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_C7ED9E2E6C0229D33E88808393ED9BC5"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_C7ED9E2E6C0229D33E88808393ED9BC5"
+ {
+ "Name" = "8:System.Runtime.Numerics.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.Numerics.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_C941DAF4C107820B74EB285F4C3F59C8"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Collections.Concurrent, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_C941DAF4C107820B74EB285F4C3F59C8"
+ {
+ "Name" = "8:System.Collections.Concurrent.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Collections.Concurrent.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_CA70FE36CA94B1C41FAD45C781A5C839"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Xml.ReaderWriter, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_CA70FE36CA94B1C41FAD45C781A5C839"
+ {
+ "Name" = "8:System.Xml.ReaderWriter.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Xml.ReaderWriter.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_CA820DF95FD57BB94B17AFEA3D6EE336"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Text.Encoding, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_CA820DF95FD57BB94B17AFEA3D6EE336"
+ {
+ "Name" = "8:System.Text.Encoding.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Text.Encoding.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_CAD79A081AAA2BED53DA07B8C6A4BA14"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.Watcher, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_CAD79A081AAA2BED53DA07B8C6A4BA14"
+ {
+ "Name" = "8:System.IO.FileSystem.Watcher.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.IO.FileSystem.Watcher.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_CAFD15850018C2B8EF458B2BD05707B1"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Primitives, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_CAFD15850018C2B8EF458B2BD05707B1"
+ {
+ "Name" = "8:System.Runtime.Serialization.Primitives.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.Serialization.Primitives.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_CB1B8B5297B62C3FF621FAE99B923672"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.IO.IsolatedStorage, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_CB1B8B5297B62C3FF621FAE99B923672"
+ {
+ "Name" = "8:System.IO.IsolatedStorage.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.IO.IsolatedStorage.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_CB7238BB141FB95492A73720AA88E2F9"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Diagnostics.Contracts, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_CB7238BB141FB95492A73720AA88E2F9"
+ {
+ "Name" = "8:System.Diagnostics.Contracts.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Diagnostics.Contracts.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_CCCA0C0DE4C2E78B48B2E983593E76B6"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Reflection.Context, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
+ "ScatterAssemblies"
+ {
+ "_CCCA0C0DE4C2E78B48B2E983593E76B6"
+ {
+ "Name" = "8:System.Reflection.Context.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Reflection.Context.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_CD5AE2556CE9808C7C09922ABC883801"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Linq.Expressions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_CD5AE2556CE9808C7C09922ABC883801"
+ {
+ "Name" = "8:System.Linq.Expressions.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Linq.Expressions.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_CDF3FA1DF0EB4D86940A3E55AB5E8871"
+ {
+ "SourcePath" = "8:..\\special_configs\\CageConfigurator.sconfig"
+ "TargetName" = "8:CageConfigurator.sconfig"
+ "Tag" = "8:"
+ "Folder" = "8:_CAE5CEE96E7744C9AE7E53D74A96D9D5"
+ "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}:_CE9921615B010F306E9BCF36EC662AFF"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.ObjectModel, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_CE9921615B010F306E9BCF36EC662AFF"
+ {
+ "Name" = "8:System.ObjectModel.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.ObjectModel.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_D0030F1F0A040427A97EC85B7C513191"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.IO.MemoryMappedFiles, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_D0030F1F0A040427A97EC85B7C513191"
+ {
+ "Name" = "8:System.IO.MemoryMappedFiles.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.IO.MemoryMappedFiles.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_D022573A185483B680E3688588A73199"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Threading.ThreadPool, Version=4.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_D022573A185483B680E3688588A73199"
+ {
+ "Name" = "8:System.Threading.ThreadPool.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Threading.ThreadPool.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_D2D2DABAA52BFD145D2809E82A0CD64C"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Security.Principal, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_D2D2DABAA52BFD145D2809E82A0CD64C"
+ {
+ "Name" = "8:System.Security.Principal.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Security.Principal.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_D3BB1411EC1CA8500E15C62DD532605C"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Collections.Concurrent, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_D3BB1411EC1CA8500E15C62DD532605C"
+ {
+ "Name" = "8:System.Collections.Concurrent.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Collections.Concurrent.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_D3E97DB13384B70BF72FE88F9A7848B7"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Linq.Expressions, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_D3E97DB13384B70BF72FE88F9A7848B7"
+ {
+ "Name" = "8:System.Linq.Expressions.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Linq.Expressions.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_D4CBD8C1F26C962664B16F69E0587682"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_D4CBD8C1F26C962664B16F69E0587682"
+ {
+ "Name" = "8:System.Security.Cryptography.Primitives.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Security.Cryptography.Primitives.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_D4FCA8686B15C44F393C5380CF6B123E"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_D4FCA8686B15C44F393C5380CF6B123E"
+ {
+ "Name" = "8:System.Runtime.InteropServices.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.InteropServices.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_D6154AA5F5CEDC8F4C709B203D641B84"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Threading.Tasks, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_D6154AA5F5CEDC8F4C709B203D641B84"
+ {
+ "Name" = "8:System.Threading.Tasks.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Threading.Tasks.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_D7B902C0AF53E1866102BE2929E1EC10"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Algorithms, Version=4.3.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_D7B902C0AF53E1866102BE2929E1EC10"
+ {
+ "Name" = "8:System.Security.Cryptography.Algorithms.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Security.Cryptography.Algorithms.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_D8BCB77792F359588B1F7EC79B90D8B6"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Primitives, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_D8BCB77792F359588B1F7EC79B90D8B6"
+ {
+ "Name" = "8:System.Runtime.Serialization.Primitives.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.Serialization.Primitives.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_D9157B22A701C99CEEF697ECF11B924B"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime.Numerics, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_D9157B22A701C99CEEF697ECF11B924B"
+ {
+ "Name" = "8:System.Runtime.Numerics.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.Numerics.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_D9301F2506BDBC0059281EB61280AD2D"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.DriveInfo, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_D9301F2506BDBC0059281EB61280AD2D"
+ {
+ "Name" = "8:System.IO.FileSystem.DriveInfo.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.IO.FileSystem.DriveInfo.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_DD13E476939CD69C53A6C12ED5828426"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Xml.XDocument, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_DD13E476939CD69C53A6C12ED5828426"
+ {
+ "Name" = "8:System.Xml.XDocument.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Xml.XDocument.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_DF07548511334F1D921BFB7F0926DD86"
{
- "Name" = "8:Primary output from CageServiceInstaller (Active)"
+ "SourcePath" = "8:..\\..\\3rd_party_licenses\\AForge.NET.txt"
+ "TargetName" = "8:AForge.NET.txt"
+ "Tag" = "8:"
+ "Folder" = "8:_4A2B9165170246499CA780AF8C49C41C"
"Condition" = "8:"
- "Object" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
- "FileType" = "3:1"
- "InstallAction" = "3:1"
- "Arguments" = "8:"
- "EntryPoint" = "8:"
- "Sequence" = "3:1"
- "Identifier" = "8:_91C3ACAA_A973_4222_BEA5_9ECF678D1A88"
- "InstallerClass" = "11:TRUE"
- "CustomActionData" = "8:/DP_TargetDir=\"[TARGETDIR]CageService.exe\""
+ "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}:_E06E4415B8045599D8387E45A6EEE325"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.ComponentModel.EventBasedAsync, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_E06E4415B8045599D8387E45A6EEE325"
+ {
+ "Name" = "8:System.ComponentModel.EventBasedAsync.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.ComponentModel.EventBasedAsync.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_E1326DD2DFD6CA14EAE4EBD7E2FA8E21"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Reflection, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_E1326DD2DFD6CA14EAE4EBD7E2FA8E21"
+ {
+ "Name" = "8:System.Reflection.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Reflection.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_E147161F1C5F5E615C6E56534D354D99"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Net.Ping, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_E147161F1C5F5E615C6E56534D354D99"
+ {
+ "Name" = "8:System.Net.Ping.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Net.Ping.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_E3A00D9FA292C4900FD6B4428966FD58"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Reflection.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_E3A00D9FA292C4900FD6B4428966FD58"
+ {
+ "Name" = "8:System.Reflection.Primitives.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Reflection.Primitives.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_E3AD1EA0CAC76BF7EC0A0802261804B2"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Threading.Timer, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_E3AD1EA0CAC76BF7EC0A0802261804B2"
+ {
+ "Name" = "8:System.Threading.Timer.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Threading.Timer.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_E5F83EF1F7978992978A53ED59B6531A"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.ComponentModel.Primitives, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_E5F83EF1F7978992978A53ED59B6531A"
+ {
+ "Name" = "8:System.ComponentModel.Primitives.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.ComponentModel.Primitives.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_E6025768243311BEE850438B6C27930B"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.IO.FileSystem, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_E6025768243311BEE850438B6C27930B"
+ {
+ "Name" = "8:System.IO.FileSystem.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.IO.FileSystem.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_E7C52341E9941AEB4D709AC5D14F9D22"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Diagnostics.TextWriterTraceListener, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_E7C52341E9941AEB4D709AC5D14F9D22"
+ {
+ "Name" = "8:System.Diagnostics.TextWriterTraceListener.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Diagnostics.TextWriterTraceListener.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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}:_EA2AE292A8E1ACCB8D85895D63D943AF"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Text.Encoding, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_EA2AE292A8E1ACCB8D85895D63D943AF"
+ {
+ "Name" = "8:System.Text.Encoding.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Text.Encoding.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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:"
}
- "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_F086C91AB5A24E92A30AA8094A913EB3"
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ECC32C057D873C75EFAB460739362D6F"
{
- "Name" = "8:Primary output from CageServiceInstaller (Active)"
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Reflection, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_ECC32C057D873C75EFAB460739362D6F"
+ {
+ "Name" = "8:System.Reflection.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Reflection.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
"Condition" = "8:"
- "Object" = "8:_01BBBCE4106E46A891E20AE0FAFF7469"
- "FileType" = "3:1"
- "InstallAction" = "3:2"
- "Arguments" = "8:"
- "EntryPoint" = "8:"
- "Sequence" = "3:1"
- "Identifier" = "8:_B7A6CC79_08F2_4256_BB8D_AB630A501160"
- "InstallerClass" = "11:TRUE"
- "CustomActionData" = "8:/DP_TargetDir=\"[TARGETDIR]CageService.exe\""
+ "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:"
}
- }
- "DefaultFeature"
- {
- "Name" = "8:DefaultFeature"
- "Title" = "8:"
- "Description" = "8:"
- }
- "ExternalPersistence"
- {
- "LaunchCondition"
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EE48644F738FAF6F608738C768C19F32"
{
- "{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_D21C8104457E412785C3040BEEFE91F9"
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:AForge, Version=2.2.5.0, Culture=neutral, PublicKeyToken=c1db6ff4eaa06aeb, processorArchitecture=MSIL"
+ "ScatterAssemblies"
{
- "Name" = "8:.NET Framework"
- "Message" = "8:[VSDNETMSG]"
- "FrameworkVersion" = "8:.NETFramework,Version=v4.6.1"
- "AllowLaterVersions" = "11:FALSE"
- "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=671728"
+ "_EE48644F738FAF6F608738C768C19F32"
+ {
+ "Name" = "8:AForge.dll"
+ "Attributes" = "3:512"
+ }
}
+ "SourcePath" = "8:AForge.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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:"
}
- }
- "File"
- {
- "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_09FC33C69A21B22C9FF3A748E0F64B86"
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EF4B6F1AF9FE8033470A716D32B9ACBD"
{
"AssemblyRegister" = "3:1"
"AssemblyIsInGAC" = "11:FALSE"
- "AssemblyAsmDisplayName" = "8:Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"
+ "AssemblyAsmDisplayName" = "8:AForge.Video.DirectShow, Version=2.2.5.0, Culture=neutral, PublicKeyToken=61ea4348d43881b7, processorArchitecture=MSIL"
"ScatterAssemblies"
{
- "_09FC33C69A21B22C9FF3A748E0F64B86"
+ "_EF4B6F1AF9FE8033470A716D32B9ACBD"
{
- "Name" = "8:Newtonsoft.Json.dll"
+ "Name" = "8:AForge.Video.DirectShow.dll"
"Attributes" = "3:512"
}
}
- "SourcePath" = "8:Newtonsoft.Json.dll"
+ "SourcePath" = "8:AForge.Video.DirectShow.dll"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
@@ -363,20 +6800,20 @@
"IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
- "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1D9F727B52E2B783D351D3A563978BE0"
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F006AD26F134960D766497CB176078D2"
{
"AssemblyRegister" = "3:1"
- "AssemblyIsInGAC" = "11:FALSE"
- "AssemblyAsmDisplayName" = "8:AForge.Video, Version=2.2.5.0, Culture=neutral, PublicKeyToken=cbfb6e07d173c401, processorArchitecture=MSIL"
+ "AssemblyIsInGAC" = "11:TRUE"
+ "AssemblyAsmDisplayName" = "8:System.Xml.XmlSerializer, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
"ScatterAssemblies"
{
- "_1D9F727B52E2B783D351D3A563978BE0"
+ "_F006AD26F134960D766497CB176078D2"
{
- "Name" = "8:AForge.Video.dll"
+ "Name" = "8:System.Xml.XmlSerializer.dll"
"Attributes" = "3:512"
}
}
- "SourcePath" = "8:AForge.Video.dll"
+ "SourcePath" = "8:System.Xml.XmlSerializer.dll"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
@@ -394,12 +6831,23 @@
"IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
- "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_23949B9F3DAD4E14A137ACF256F92A3C"
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F09F2912F1F0E27DC56561B17D36EA93"
{
- "SourcePath" = "8:..\\..\\3rd_party_licenses\\nlohman-json.txt"
- "TargetName" = "8:nlohman-json.txt"
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Formatters, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_F09F2912F1F0E27DC56561B17D36EA93"
+ {
+ "Name" = "8:System.Runtime.Serialization.Formatters.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Runtime.Serialization.Formatters.dll"
+ "TargetName" = "8:"
"Tag" = "8:"
- "Folder" = "8:_4A2B9165170246499CA780AF8C49C41C"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
"Condition" = "8:"
"Transitive" = "11:FALSE"
"Vital" = "11:TRUE"
@@ -411,15 +6859,26 @@
"PackageAs" = "3:1"
"Register" = "3:1"
"Exclude" = "11:FALSE"
- "IsDependency" = "11:FALSE"
+ "IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
- "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C24B7DB4E4A4A81B84E9B25DF5A8647"
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F1554755465E51D469FE81E71D1413B1"
{
- "SourcePath" = "8:..\\..\\3rd_party_licenses\\cpp_base64.txt"
- "TargetName" = "8:cpp_base64.txt"
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.Lightweight, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ "ScatterAssemblies"
+ {
+ "_F1554755465E51D469FE81E71D1413B1"
+ {
+ "Name" = "8:System.Reflection.Emit.Lightweight.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Reflection.Emit.Lightweight.dll"
+ "TargetName" = "8:"
"Tag" = "8:"
- "Folder" = "8:_4A2B9165170246499CA780AF8C49C41C"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
"Condition" = "8:"
"Transitive" = "11:FALSE"
"Vital" = "11:TRUE"
@@ -431,13 +6890,13 @@
"PackageAs" = "3:1"
"Register" = "3:1"
"Exclude" = "11:FALSE"
- "IsDependency" = "11:FALSE"
+ "IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
- "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7BFF8A70116547B1A6683FF47B5E3E62"
+ "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F1E810AF35024A60B5693314B1D4542D"
{
- "SourcePath" = "8:..\\..\\3rd_party_licenses\\asio.txt"
- "TargetName" = "8:asio.txt"
+ "SourcePath" = "8:..\\..\\3rd_party_licenses\\Newtonsoft JSON.txt"
+ "TargetName" = "8:Newtonsoft JSON.txt"
"Tag" = "8:"
"Folder" = "8:_4A2B9165170246499CA780AF8C49C41C"
"Condition" = "8:"
@@ -454,12 +6913,23 @@
"IsDependency" = "11:FALSE"
"IsolateTo" = "8:"
}
- "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF07548511334F1D921BFB7F0926DD86"
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F34C3CBFA1DD9238FDFA2B056CFC8708"
{
- "SourcePath" = "8:..\\..\\3rd_party_licenses\\AForge.NET.txt"
- "TargetName" = "8:AForge.NET.txt"
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.ServiceModel.Duplex, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ "ScatterAssemblies"
+ {
+ "_F34C3CBFA1DD9238FDFA2B056CFC8708"
+ {
+ "Name" = "8:System.ServiceModel.Duplex.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.ServiceModel.Duplex.dll"
+ "TargetName" = "8:"
"Tag" = "8:"
- "Folder" = "8:_4A2B9165170246499CA780AF8C49C41C"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
"Condition" = "8:"
"Transitive" = "11:FALSE"
"Vital" = "11:TRUE"
@@ -471,23 +6941,23 @@
"PackageAs" = "3:1"
"Register" = "3:1"
"Exclude" = "11:FALSE"
- "IsDependency" = "11:FALSE"
+ "IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
- "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EE48644F738FAF6F608738C768C19F32"
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F5021C387A067575678C19DD0918025B"
{
"AssemblyRegister" = "3:1"
"AssemblyIsInGAC" = "11:FALSE"
- "AssemblyAsmDisplayName" = "8:AForge, Version=2.2.5.0, Culture=neutral, PublicKeyToken=c1db6ff4eaa06aeb, processorArchitecture=MSIL"
+ "AssemblyAsmDisplayName" = "8:System.Runtime.Handles, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
"ScatterAssemblies"
{
- "_EE48644F738FAF6F608738C768C19F32"
+ "_F5021C387A067575678C19DD0918025B"
{
- "Name" = "8:AForge.dll"
+ "Name" = "8:System.Runtime.Handles.dll"
"Attributes" = "3:512"
}
}
- "SourcePath" = "8:AForge.dll"
+ "SourcePath" = "8:System.Runtime.Handles.dll"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
@@ -505,20 +6975,20 @@
"IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
- "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EF4B6F1AF9FE8033470A716D32B9ACBD"
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F934A84117EBD44AB7C7AB2C7D5A28A9"
{
"AssemblyRegister" = "3:1"
"AssemblyIsInGAC" = "11:FALSE"
- "AssemblyAsmDisplayName" = "8:AForge.Video.DirectShow, Version=2.2.5.0, Culture=neutral, PublicKeyToken=61ea4348d43881b7, processorArchitecture=MSIL"
+ "AssemblyAsmDisplayName" = "8:System.ComponentModel, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
"ScatterAssemblies"
{
- "_EF4B6F1AF9FE8033470A716D32B9ACBD"
+ "_F934A84117EBD44AB7C7AB2C7D5A28A9"
{
- "Name" = "8:AForge.Video.DirectShow.dll"
+ "Name" = "8:System.ComponentModel.dll"
"Attributes" = "3:512"
}
}
- "SourcePath" = "8:AForge.Video.DirectShow.dll"
+ "SourcePath" = "8:System.ComponentModel.dll"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
@@ -536,12 +7006,23 @@
"IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
- "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F1E810AF35024A60B5693314B1D4542D"
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F977CA76227A4B7E13BDDD1D24783ABC"
{
- "SourcePath" = "8:..\\..\\3rd_party_licenses\\Newtonsoft JSON.txt"
- "TargetName" = "8:Newtonsoft JSON.txt"
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.Text.RegularExpressions, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_F977CA76227A4B7E13BDDD1D24783ABC"
+ {
+ "Name" = "8:System.Text.RegularExpressions.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.Text.RegularExpressions.dll"
+ "TargetName" = "8:"
"Tag" = "8:"
- "Folder" = "8:_4A2B9165170246499CA780AF8C49C41C"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
"Condition" = "8:"
"Transitive" = "11:FALSE"
"Vital" = "11:TRUE"
@@ -553,7 +7034,7 @@
"PackageAs" = "3:1"
"Register" = "3:1"
"Exclude" = "11:FALSE"
- "IsDependency" = "11:FALSE"
+ "IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FBA8493A64611F9DA84D53481DFA1E95"
@@ -587,6 +7068,37 @@
"IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FBDCA93B4DD114CF542311FBF4755CA2"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:System.IO.Compression.FileSystem, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
+ "ScatterAssemblies"
+ {
+ "_FBDCA93B4DD114CF542311FBF4755CA2"
+ {
+ "Name" = "8:System.IO.Compression.FileSystem.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:System.IO.Compression.FileSystem.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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:"
+ }
}
"FileType"
{
@@ -649,6 +7161,18 @@
}
}
}
+ "{994432C3-9487-495D-8656-3E829A8DBDDE}:_CAE5CEE96E7744C9AE7E53D74A96D9D5"
+ {
+ "DefaultLocation" = "8:[WindowsVolume]Users\\Public\\Documents\\SharkCage"
+ "Name" = "8:CageConfigsFolder"
+ "AlwaysCreate" = "11:FALSE"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Property" = "8:NEWPROPERTY1"
+ "Folders"
+ {
+ }
+ }
}
"LaunchCondition"
{
@@ -666,7 +7190,7 @@
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:SharkCage"
"ProductCode" = "8:{ABDFC121-DD3E-48A6-93D2-775E2B08A35F}"
- "PackageCode" = "8:{9EE13A14-D7EF-4205-A90C-AAB93ED501A3}"
+ "PackageCode" = "8:{4845895A-2CFA-4BAF-A9B1-EEF4EC91C5A3}"
"UpgradeCode" = "8:{593757A6-95D5-412D-A2FF-7530C14252A4}"
"AspNetVersion" = "8:4.0.30319.0"
"RestartWWWService" = "11:FALSE"
@@ -716,6 +7240,28 @@
"Transitive" = "11:FALSE"
"Keys"
{
+ "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_64346292C2834489ACD372DCEE17C171"
+ {
+ "Name" = "8:Configs"
+ "Condition" = "8:"
+ "AlwaysCreate" = "11:FALSE"
+ "DeleteAtUninstall" = "11:FALSE"
+ "Transitive" = "11:FALSE"
+ "Keys"
+ {
+ }
+ "Values"
+ {
+ "{ADCFDA98-8FDD-45E4-90BC-E3D20B029870}:_6CC920F22EA3429A8D7CE8D0C4D07D93"
+ {
+ "Name" = "8:CageConfigurator"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "ValueTypes" = "3:1"
+ "Value" = "8:%SystemDrive%\\Users\\Public\\Documents\\SharkCage\\CageConfigurator.sconfig"
+ }
+ }
+ }
}
"Values"
{
@@ -1221,7 +7767,7 @@
}
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_01BBBCE4106E46A891E20AE0FAFF7469"
{
- "SourcePath" = "8:..\\CageServiceInstaller\\obj\\Release\\CageServiceInstaller.dll"
+ "SourcePath" = "8:..\\CageServiceInstaller\\obj\\Debug\\CageServiceInstaller.dll"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
@@ -1247,6 +7793,34 @@
{
}
}
+ "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_27E05B6E95BB4BE49D3FFBE80F1E473E"
+ {
+ "SourcePath" = "8:"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
+ "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:ContentFiles"
+ "OutputProjectGuid" = "8:{338B7710-AC79-403D-9157-14B5126239FD}"
+ "ShowKeyOutput" = "11:TRUE"
+ "ExcludeFilters"
+ {
+ }
+ }
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_553148D7746740EF9D3462853870E824"
{
"SourcePath" = "8:"
@@ -1277,7 +7851,7 @@
}
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_63AF181CABB14A408EE15B685CD7A728"
{
- "SourcePath" = "8:..\\CageManager\\Release\\CageManager.exe"
+ "SourcePath" = "8:..\\CageManager\\Debug\\CageManager.exe"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
@@ -1333,7 +7907,7 @@
}
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_7804B69B4E70477F81F409F2AE60194D"
{
- "SourcePath" = "8:..\\CageConfigurator\\obj\\Release\\CageConfigurator.exe"
+ "SourcePath" = "8:..\\CageConfigurator\\obj\\Debug\\CageConfigurator.exe"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
@@ -1361,7 +7935,7 @@
}
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_8A8ED1AABB68440AB0601DB450CCF386"
{
- "SourcePath" = "8:..\\SharedFunctionality\\Release\\SharedFunctionality.dll"
+ "SourcePath" = "8:..\\SharedFunctionality\\Debug\\SharedFunctionality.dll"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
@@ -1389,7 +7963,7 @@
}
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_9225268146BB459386642FBCC47E116A"
{
- "SourcePath" = "8:..\\CageService\\Release\\CageService.exe"
+ "SourcePath" = "8:..\\CageService\\Debug\\CageService.exe"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"
@@ -1445,7 +8019,7 @@
}
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_E943CA2FAF6449929DEB63A8430A741B"
{
- "SourcePath" = "8:..\\CageChooser\\obj\\Release\\CageChooser.exe"
+ "SourcePath" = "8:..\\CageChooser\\obj\\Debug\\CageChooser.exe"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_AF35AA7C0DA64CECA8201B61E6196592"