From 45b4cd12f4f717db6ee6bd05aa6fb4c6b79e5a95 Mon Sep 17 00:00:00 2001 From: u4pak Date: Sat, 20 Jan 2024 15:30:53 -0800 Subject: [PATCH] thank you psycho for anti-fiddler proxying --- Partypacker/Core/AppRegistry.cs | 50 + Partypacker/Core/Extensions.cs | 20 + Partypacker/Core/Win32.cs | 90 ++ Partypacker/Partypacker.csproj | 2 + Partypacker/Program.cs | 18 +- Partypacker/Proxy/PrivateKeyDeleters.cs | 50 + Partypacker/Proxy/Proxy.cs | 202 ++++ .../bin/Debug/net7.0/Partypacker.deps.json | 271 ++++- Partypacker/bin/Debug/net7.0/Partypacker.dll | Bin 7680 -> 8192 bytes Partypacker/bin/Debug/net7.0/Partypacker.exe | Bin 154624 -> 154624 bytes Partypacker/bin/Debug/net7.0/Partypacker.pdb | Bin 11272 -> 12596 bytes .../Debug/net7.0/Partypacker.AssemblyInfo.cs | 2 +- .../Partypacker.AssemblyInfoInputs.cache | 2 +- ....GeneratedMSBuildEditorConfig.editorconfig | 2 +- .../obj/Debug/net7.0/Partypacker.assets.cache | Bin 868 -> 12718 bytes ...Partypacker.csproj.AssemblyReference.cache | Bin 307 -> 4281 bytes .../net7.0/Partypacker.csproj.CopyComplete | 0 ...Partypacker.csproj.CoreCompileInputs.cache | 2 +- .../Partypacker.csproj.FileListAbsolute.txt | 28 + Partypacker/obj/Debug/net7.0/Partypacker.dll | Bin 7680 -> 8192 bytes .../net7.0/Partypacker.genruntimeconfig.cache | 2 +- Partypacker/obj/Debug/net7.0/Partypacker.pdb | Bin 11272 -> 12596 bytes Partypacker/obj/Debug/net7.0/apphost.exe | Bin 154624 -> 154624 bytes .../obj/Debug/net7.0/ref/Partypacker.dll | Bin 6144 -> 6144 bytes .../obj/Debug/net7.0/refint/Partypacker.dll | Bin 6144 -> 6144 bytes .../obj/Partypacker.csproj.nuget.dgspec.json | 32 +- .../obj/Partypacker.csproj.nuget.g.props | 18 +- Partypacker/obj/project.assets.json | 997 +++++++++++++++++- Partypacker/obj/project.nuget.cache | 47 +- 29 files changed, 1794 insertions(+), 41 deletions(-) create mode 100644 Partypacker/Core/AppRegistry.cs create mode 100644 Partypacker/Core/Extensions.cs create mode 100644 Partypacker/Core/Win32.cs create mode 100644 Partypacker/Proxy/PrivateKeyDeleters.cs create mode 100644 Partypacker/Proxy/Proxy.cs delete mode 100644 Partypacker/obj/Debug/net7.0/Partypacker.csproj.CopyComplete diff --git a/Partypacker/Core/AppRegistry.cs b/Partypacker/Core/AppRegistry.cs new file mode 100644 index 0000000..2170bd9 --- /dev/null +++ b/Partypacker/Core/AppRegistry.cs @@ -0,0 +1,50 @@ +using Microsoft.Win32; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Partypacker.Core +{ + internal class AppRegistry : IDisposable + { + // credit to PsychoPast's LawinServer launcher for the following code: + // https://github.com/PsychoPast/LawinServer/blob/master/LawinServer/Core/AppRegistry.cs + // without it, fiddler-less proxying would have never been achieved + + private const string AppKey = @"SOFTWARE\Partypacker"; + + private readonly RegistryKey _registryKey; + + private readonly RegistryKey currentUser = Registry.CurrentUser; + + private RegistryKey OpenKey => currentUser.OpenSubKey(AppKey, RegistryKeyPermissionCheck.ReadWriteSubTree); + + public AppRegistry() => _registryKey = OpenKey switch + { + null => currentUser.CreateSubKey(AppKey, RegistryKeyPermissionCheck.ReadWriteSubTree), + _ => currentUser.OpenSubKey(AppKey, RegistryKeyPermissionCheck.ReadWriteSubTree) + }; + + public void UpdateRegistry(List registryInfos) => _registryKey.SetValues(registryInfos); + + public void Dispose() + { + _registryKey.Close(); + _registryKey.Dispose(); + GC.SuppressFinalize(this); + } + + public T GetRegistryValue(string name) => (T)_registryKey.GetValue(name, null); + } + + internal class RegistryInfo + { + public string Name { get; set; } + + public object Value { get; set; } + + public RegistryValueKind RegistryValueKind { get; set; } + } +} diff --git a/Partypacker/Core/Extensions.cs b/Partypacker/Core/Extensions.cs new file mode 100644 index 0000000..7fb58bc --- /dev/null +++ b/Partypacker/Core/Extensions.cs @@ -0,0 +1,20 @@ +using Microsoft.Win32; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Partypacker.Core +{ + internal static class Extensions + { + // credit to PsychoPast's LawinServer launcher for the following code: + // https://github.com/PsychoPast/LawinServer/blob/master/LawinServer/Core/Extensions.cs + // without it, fiddler-less proxying would have never been achieved + + public static void SetValues(this RegistryKey registryKey, List registryInfos) => registryInfos + .ForEach(x => registryKey + .SetValue(x.Name, x.Value, x.RegistryValueKind)); + } +} diff --git a/Partypacker/Core/Win32.cs b/Partypacker/Core/Win32.cs new file mode 100644 index 0000000..e4037fa --- /dev/null +++ b/Partypacker/Core/Win32.cs @@ -0,0 +1,90 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Runtime.InteropServices; + +namespace Partypacker.Core +{ + internal static class Win32 + { + // credit to PsychoPast's LawinServer launcher for the following code: + // https://github.com/PsychoPast/LawinServer/blob/master/LawinServer/Core/Win32.cs + // without it, fiddler-less proxying would have never been achieved + + /// + /// Adds or removes an application-defined HandlerRoutine function from the list of handler functions for the calling process. + /// + /// A pointer to the application-defined HandlerRoutine function to be added or removed. + /// If this parameter is TRUE, the handler is added; if it is FALSE, the handler is removed. + /// If the function succeeds, the return value is nonzero, else zero. + [DllImport("Kernel32")] + public static extern bool SetConsoleCtrlHandler(SetConsoleCtrlEventHandler HandlerRoutine, bool Add); + + /// + /// An application-defined function used with the SetConsoleCtrlHandler function. + /// + /// The type of control signal received by the handler. + /// If the function handles the control signal, it should return TRUE. If it returns FALSE, the next handler function in the list of handlers for this process is used. + public delegate bool SetConsoleCtrlEventHandler(CtrlType dwCtrlType); + + /// + /// The type of control signal received by the handler. + /// + public enum CtrlType + { + /// + /// A CTRL+C signal was received. + /// + CTRL_C_EVENT = 0, + + /// + /// A CTRL+BREAK signal was received. + /// + CTRL_BREAK_EVENT = 1, + + /// + /// A signal that the system sends to all processes attached to a console when the user closes the console. + /// + CTRL_CLOSE_EVENT = 2, + + /// + /// A signal that the system sends to all console processes when a user is logging off. + /// + CTRL_LOGOFF_EVENT = 5, + + /// + /// A signal that the system sends when the system is shutting down. + /// + CTRL_SHUTDOWN_EVENT = 6 + } + + /// + /// Set an internet option. + /// + /// Handle on which to set information. + /// Internet option to be set. + /// Pointer to a buffer that contains the option setting. + /// Size of the lpBuffer buffer. + /// + [DllImport("wininet.dll")] + public static extern bool InternetSetOption(IntPtr hInternet, InternetOptions dwOption, IntPtr lpBuffer, uint dwBufferLength); + + /// + /// The following option flags are used with the InternetQueryOption and InternetSetOption functions. + /// + internal enum InternetOptions : int + { + /// + /// Causes the proxy data to be reread from the registry for a handle. + /// + INTERNET_OPTION_REFRESH = 37, + + /// + /// Notifies the system that the registry settings have been changed so that it verifies the settings on the next call to InternetConnect. + /// + INTERNET_OPTION_SETTINGS_CHANGED = 39 + } + } +} diff --git a/Partypacker/Partypacker.csproj b/Partypacker/Partypacker.csproj index 887ab26..8332a03 100644 --- a/Partypacker/Partypacker.csproj +++ b/Partypacker/Partypacker.csproj @@ -8,7 +8,9 @@ + + diff --git a/Partypacker/Program.cs b/Partypacker/Program.cs index 5a7bdf4..457a434 100644 --- a/Partypacker/Program.cs +++ b/Partypacker/Program.cs @@ -1,8 +1,11 @@ -// See https://aka.ms/new-console-template for more information -using Partypacker; +using Partypacker; using Pastel; using System.Drawing; +Console.SetWindowSize(75, 20); + +Console.CursorVisible = false; + Console.WriteLine(@" _____ _ _ | __ \ | | | | @@ -14,16 +17,16 @@ Console.WriteLine(@" |___/|_| ".Pastel(Color.IndianRed)); Console.WriteLine("-----------------------------------------------------------".Pastel(Color.CadetBlue)); -Console.WriteLine("Welcome to Partypacker - what do you want to do?"); +Console.WriteLine("Welcome to Partypacker - Select an option below:"); ConsoleKeyInfo ReceivedKeyInput; int SelectedOptionIndex = 0; bool Running = true; SelectableOption[] Options = new SelectableOption[] { - new SelectableOption("Test 1", () => { Console.WriteLine("cool!"); }), - new SelectableOption("Test 2", () => { Console.WriteLine("epic!"); }), - new SelectableOption("Test 3", () => { Console.WriteLine("awesome!"); }) + new SelectableOption("Launch Fortnite", () => { Console.WriteLine("cool!"); }), + new SelectableOption("Open Dashboard", () => { Console.WriteLine("epic!"); }), + new SelectableOption("Settings", () => { Console.WriteLine("awesome!"); }) }; while (Running) @@ -31,8 +34,9 @@ while (Running) (int left, int top) = Console.GetCursorPosition(); for (int i = 0; i < Options.Length; i++) { + bool Selected = SelectedOptionIndex == i; SelectableOption Option = Options[i]; - Console.WriteLine($"{(SelectedOptionIndex == i ? ">".Pastel(Color.LimeGreen) : " ")} {Option.Name.Pastel(Color.DarkGreen)}"); + Console.WriteLine($"{(Selected ? ">".Pastel(Color.LimeGreen) : " ")} {Option.Name.Pastel(Selected ? Color.DarkGreen : Color.Gray)}"); } ReceivedKeyInput = Console.ReadKey(); diff --git a/Partypacker/Proxy/PrivateKeyDeleters.cs b/Partypacker/Proxy/PrivateKeyDeleters.cs new file mode 100644 index 0000000..7aa39f3 --- /dev/null +++ b/Partypacker/Proxy/PrivateKeyDeleters.cs @@ -0,0 +1,50 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Security.Cryptography; + +namespace Partypacker.Proxy +{ + internal class PrivateKeyDeleters + { + // credit to PsychoPast's LawinServer launcher for the following code: + // https://github.com/PsychoPast/LawinServer/blob/master/LawinServer/Proxy/PrivateKeyDeleters.cs + // without it, fiddler-less proxying would have never been achieved + + private readonly IDictionary> privateKeyDeleters = new Dictionary>(); + + public PrivateKeyDeleters() + { + AddPrivateKeyDeleter(DefaultRSACngPrivateKeyDeleter); + AddPrivateKeyDeleter(DefaultRSACryptoServiceProviderPrivateKeyDeleter); + } + + private void AddPrivateKeyDeleter(Action keyDeleter) where T : AsymmetricAlgorithm => privateKeyDeleters[typeof(T)] = (a) => keyDeleter((T)a); + + public void DeletePrivateKey(AsymmetricAlgorithm asymmetricAlgorithm) + { + for (Type type = asymmetricAlgorithm.GetType(); type != null; type = type.BaseType) + { + if (privateKeyDeleters.TryGetValue(type, out Action deleter)) + { + deleter(asymmetricAlgorithm); + return; + } + } + } + + private void DefaultRSACryptoServiceProviderPrivateKeyDeleter(RSACryptoServiceProvider rsaCryptoServiceProvider) + { + rsaCryptoServiceProvider.PersistKeyInCsp = false; + rsaCryptoServiceProvider.Clear(); + } + + private void DefaultRSACngPrivateKeyDeleter(RSACng rsaCng) + { + rsaCng.Key.Delete(); + rsaCng.Clear(); + } + } +} diff --git a/Partypacker/Proxy/Proxy.cs b/Partypacker/Proxy/Proxy.cs new file mode 100644 index 0000000..75b51f3 --- /dev/null +++ b/Partypacker/Proxy/Proxy.cs @@ -0,0 +1,202 @@ +using Fiddler; +using Microsoft.Win32; +using Partypacker.Core; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Security.Cryptography.X509Certificates; +using System.Text; +using System.Threading.Tasks; +using static Fiddler.FiddlerApplication; +using static Partypacker.Core.Win32; + +namespace Partypacker.Proxy +{ + internal class Proxy + { + // credit to PsychoPast's LawinServer launcher for the following code: + // https://github.com/PsychoPast/LawinServer/blob/master/LawinServer/Proxy/Proxy.cs + // without it, fiddler-less proxying would have never been achieved + + #region VARIABLES + private const string Proxy_Server = "ProxyServer"; + + private const string Proxy_Enable = "ProxyEnable"; + + private readonly AppRegistry appRegistry; + + private readonly string proxyKey = @$"{Registry.CurrentUser}\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings"; + + private readonly FiddlerCoreStartupSettings startupSettings; + + private (object _currentProxyServer, int _defaultUserProxyState) proxySettings; + + private (string _fiddlerCert, string _privateKey) _fiddlerCertInfos; + + private int count = 0; + #endregion + + public Proxy() : this(9999) { } //default port + + public Proxy(ushort port) + { + appRegistry = new AppRegistry(); + + GetDefaultProxySettingsValue(); + ConfigureFiddlerSettings(out bool fiddlerCertRegKeysExist); + startupSettings = new FiddlerCoreStartupSettingsBuilder() + .ListenOnPort(port) + .RegisterAsSystemProxy() + .DecryptSSL() + .OptimizeThreadPool() + .Build(); + if (!CertificateHandler(fiddlerCertRegKeysExist)) + { + //LogError("[Certificate Install Error] Could not install the certificate. Please restart the app and try again!"); + StopProxy(); + Environment.Exit(69); + } + } + + #region CONFIGURATION + private void GetDefaultProxySettingsValue() + { + proxySettings._currentProxyServer = Registry.GetValue(proxyKey, Proxy_Server, null); + proxySettings._defaultUserProxyState = (int)Registry.GetValue(proxyKey, Proxy_Enable, 0); + } + + private void ConfigureFiddlerSettings(out bool fiddlerCertRegKeysExist) + { + CONFIG.IgnoreServerCertErrors = false; + Prefs.SetBoolPref("fiddler.network.streaming.abortifclientaborts", true); + Prefs.SetBoolPref("fiddler.certmaker.PreferCertEnroll", true); + _fiddlerCertInfos._fiddlerCert = appRegistry.GetRegistryValue("FiddlerCert"); + _fiddlerCertInfos._privateKey = appRegistry.GetRegistryValue("PrivateKey"); + fiddlerCertRegKeysExist = _fiddlerCertInfos._fiddlerCert != null && _fiddlerCertInfos._privateKey != null; + if (fiddlerCertRegKeysExist) + { + Prefs.SetStringPref("fiddler.certmaker.bc.cert", _fiddlerCertInfos._fiddlerCert); + Prefs.SetStringPref("fiddler.certmaker.bc.key", _fiddlerCertInfos._privateKey); + } + } + + private bool CertificateHandler(bool valueExist) + { + if (!CertMaker.rootCertExists()) + { + if (!CertMaker.createRootCert()) + { + return false; + } + } + bool certificateSuccess = CertMaker.rootCertIsTrusted() || CertMaker.trustRootCert(); + if (!certificateSuccess) + { + return false; + } + _fiddlerCertInfos._fiddlerCert ??= Prefs.GetStringPref("fiddler.certmaker.bc.cert", null); + _fiddlerCertInfos._privateKey ??= Prefs.GetStringPref("fiddler.certmaker.bc.key", null); + if (!valueExist) + { + List registryInfo = new List() + { + new RegistryInfo() + { + Name = "FiddlerCert", + Value = _fiddlerCertInfos._fiddlerCert, + RegistryValueKind = RegistryValueKind.String + }, + new RegistryInfo() + { + Name = "PrivateKey", + Value = _fiddlerCertInfos._privateKey, + RegistryValueKind = RegistryValueKind.String + } + }; + appRegistry.UpdateRegistry(registryInfo); + } + return true; + } + #endregion + + public void StartProxy() + { + appRegistry.Dispose(); + BeforeRequest += OnBeforeRequest; + AfterSessionComplete += OnAfterSessionComplete; + Startup(startupSettings); + Console.WriteLine($"Proxy started listening on port {startupSettings.ListenPort}."); + } + + public bool StopProxy() + { + DeletePrivateKeys(); + return ResetProxySettings(); + } + + #region EVENT_HANDLERS + private void OnBeforeRequest(Session oSession) + { + if (oSession.hostname.Contains(".ol.epicgames.com")) + { + if (oSession.HTTPMethodIs("CONNECT")) + { + oSession["x-replywithtunnel"] = "FortniteTunnel"; + return; + } + oSession.fullUrl = "https://lawinserverfinal.herokuapp.com" + oSession.PathAndQuery; + + } + } + + private void OnAfterSessionComplete(Session oSession) + { + if (oSession.hostname != "lawinserverfinal.herokuapp.com") + { + return; + } + if (oSession.responseCode >= 400) + { + string fullUrl = oSession.fullUrl; + string requestHeaders = oSession.oRequest.headers.ToString(); + int responseCode = oSession.responseCode; + + /*LogError($"[Endpoint] {fullUrl}\n" + + $"[ResponseCode] {responseCode}\n" + + $"[RequestHeader] {requestHeaders}\n\n" + );*/ + } + Console.Title = $"LawinServer - Redirected {++count} endpoints"; + } + #endregion + + #region CLEANUP + private bool ResetProxySettings() + { + Registry.SetValue(proxyKey, Proxy_Server, proxySettings._currentProxyServer, RegistryValueKind.String); + if (proxySettings._defaultUserProxyState == 0) + { + Registry.SetValue(proxyKey, Proxy_Enable, 0, RegistryValueKind.DWord); + bool successfulyChanged = InternetSetOption(IntPtr.Zero, InternetOptions.INTERNET_OPTION_SETTINGS_CHANGED, IntPtr.Zero, 0); + bool successfulyRefreshed = InternetSetOption(IntPtr.Zero, InternetOptions.INTERNET_OPTION_REFRESH, IntPtr.Zero, 0); + return successfulyChanged && successfulyRefreshed; + } + return true; + } + + private void DeletePrivateKeys() + { + if (!(CertMaker.oCertProvider is ICertificateProvider4 certProvider)) + { + return; + } + PrivateKeyDeleters privateKeyDeleter = new PrivateKeyDeleters(); + IDictionary certs = certProvider.CertCache; + foreach (X509Certificate2 cert in certs.Values) + { + privateKeyDeleter.DeletePrivateKey(cert.PrivateKey); + } + } + #endregion + } +} diff --git a/Partypacker/bin/Debug/net7.0/Partypacker.deps.json b/Partypacker/bin/Debug/net7.0/Partypacker.deps.json index ad58db3..0a48685 100644 --- a/Partypacker/bin/Debug/net7.0/Partypacker.deps.json +++ b/Partypacker/bin/Debug/net7.0/Partypacker.deps.json @@ -8,12 +8,58 @@ ".NETCoreApp,Version=v7.0": { "Partypacker/1.0.0": { "dependencies": { - "Pastel": "5.0.0" + "FiddlerCore.Trial": "5.0.2", + "Pastel": "5.0.0", + "System.ComponentModel.Composition": "8.0.0" }, "runtime": { "Partypacker.dll": {} } }, + "BCMakeCert/2.0.9": { + "runtime": { + "lib/netstandard2.0/BCMakeCert.dll": { + "assemblyVersion": "2.0.9.0", + "fileVersion": "2.0.9.0" + } + } + }, + "DotNetZip/1.13.8": { + "dependencies": { + "System.Security.Permissions": "4.5.0", + "System.Text.Encoding.CodePages": "4.5.0", + "System.Text.Encoding.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/DotNetZip.dll": { + "assemblyVersion": "1.13.8.0", + "fileVersion": "1.13.8.0" + } + } + }, + "FiddlerCore.Trial/5.0.2": { + "dependencies": { + "BCMakeCert": "2.0.9", + "DotNetZip": "1.13.8", + "Microsoft.Win32.Registry": "4.5.0", + "System.Configuration.ConfigurationManager": "4.4.1", + "Telerik.NetworkConnections": "0.2.0" + }, + "runtime": { + "lib/netstandard2.0/FiddlerCore.dll": { + "assemblyVersion": "5.0.2.0", + "fileVersion": "5.0.2.0" + } + } + }, + "Microsoft.NETCore.Platforms/2.0.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Registry/4.5.0": { + "dependencies": { + "System.Security.AccessControl": "4.5.0", + "System.Security.Principal.Windows": "4.5.0" + } + }, "Pastel/5.0.0": { "runtime": { "lib/net6.0/Pastel.dll": { @@ -21,6 +67,103 @@ "fileVersion": "5.0.0.0" } } + }, + "System.ComponentModel.Composition/8.0.0": { + "runtime": { + "lib/net7.0/System.ComponentModel.Composition.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Configuration.ConfigurationManager/4.4.1": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.4.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.25921.2" + } + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/4.5.0": {}, + "System.Security.AccessControl/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.Principal.Windows": "4.5.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.4.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.25519.3" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.25519.3" + } + } + }, + "System.Security.Permissions/4.5.0": { + "dependencies": { + "System.Security.AccessControl": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Security.Principal.Windows/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "Telerik.NetworkConnections/0.2.0": { + "dependencies": { + "Microsoft.Win32.Registry": "4.5.0", + "System.ComponentModel.Composition": "8.0.0" + }, + "runtime": { + "lib/netstandard2.0/Telerik.NetworkConnections.dll": { + "assemblyVersion": "0.2.0.0", + "fileVersion": "0.2.0.0" + } + } } } }, @@ -30,12 +173,138 @@ "serviceable": false, "sha512": "" }, + "BCMakeCert/2.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GBAneZZniACYigSU8FuK7CBav+sZ9eHQWyt10Qgqyxp1RULO9fGv2WYfLOYHhbdg+hs/sU+OLCPwMwzGqZOCVg==", + "path": "bcmakecert/2.0.9", + "hashPath": "bcmakecert.2.0.9.nupkg.sha512" + }, + "DotNetZip/1.13.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-r4oFZLHuxhOw4kr19nuVBQe+r0OMqqO2VZw5p6uW4ANZM/bPAuWBkUSo+P1R0KT7yYXpuT/wH7D9o59lPtCPrA==", + "path": "dotnetzip/1.13.8", + "hashPath": "dotnetzip.1.13.8.nupkg.sha512" + }, + "FiddlerCore.Trial/5.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysifju0hXE+HQCmoYvZHIrp/YPXBtdJIz5dUo9JeMyXyB1v1vjm1ViTdvXMwZDiLlfxBK2JfaN5UBGCsuis4yg==", + "path": "fiddlercore.trial/5.0.2", + "hashPath": "fiddlercore.trial.5.0.2.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "path": "microsoft.netcore.platforms/2.0.0", + "hashPath": "microsoft.netcore.platforms.2.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==", + "path": "microsoft.win32.registry/4.5.0", + "hashPath": "microsoft.win32.registry.4.5.0.nupkg.sha512" + }, "Pastel/5.0.0": { "type": "package", "serviceable": true, "sha512": "sha512-678i15lh+oAKZs2ihgiDVmDbiprEbji2L/w+jIcTkZpkdJ+UgrhToQTQN3Mw0bfM+Yx3cIBA3BS7iKT2poqBQg==", "path": "pastel/5.0.0", "hashPath": "pastel.5.0.0.nupkg.sha512" + }, + "System.ComponentModel.Composition/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bGhUX5BTivJ9Wax0qnJy7uGq7dn/TQkEpJ2Fpu1etg8dbPwyDkUzNPc1d3I2/jUr9y4wDI3a1dkSmi8X21Pzbw==", + "path": "system.componentmodel.composition/8.0.0", + "hashPath": "system.componentmodel.composition.8.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==", + "path": "system.configuration.configurationmanager/4.4.1", + "hashPath": "system.configuration.configurationmanager.4.4.1.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YrzNWduCDHhUaSRBxHxL11UkM2fD6y8hITHis4/LbQZ6vj3vdRjoH3IoPWWC9uDXK2wHIqn+b5gv1Np/VKyM1g==", + "path": "system.runtime.compilerservices.unsafe/4.5.0", + "hashPath": "system.runtime.compilerservices.unsafe.4.5.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", + "path": "system.security.accesscontrol/4.5.0", + "hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==", + "path": "system.security.cryptography.protecteddata/4.4.0", + "hashPath": "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512" + }, + "System.Security.Permissions/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "path": "system.security.permissions/4.5.0", + "hashPath": "system.security.permissions.4.5.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", + "path": "system.security.principal.windows/4.5.0", + "hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S0wEUiKcLvRlkFUXca8uio1UQ5bYQzYgOmOKtCqaBQC3GR9AJjh43otcM32IGsAyvadFTaAMw9Irm6dS4Evfng==", + "path": "system.text.encoding.codepages/4.5.0", + "hashPath": "system.text.encoding.codepages.4.5.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "Telerik.NetworkConnections/0.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CuRCESra/miCNvFSniRhvG1d8Abx0oI7/rYXvb/panClfQvq1WfXaMWrnXlD8Zdi8wpgwSxTDX+XIimCeYUxFw==", + "path": "telerik.networkconnections/0.2.0", + "hashPath": "telerik.networkconnections.0.2.0.nupkg.sha512" } } } \ No newline at end of file diff --git a/Partypacker/bin/Debug/net7.0/Partypacker.dll b/Partypacker/bin/Debug/net7.0/Partypacker.dll index 08fbbeaed629df6b9bb163bab2756f08112bb1e5..973b70e4467800d1f51bfd2ca41a2060856348c9 100644 GIT binary patch delta 2344 zcmZuzZA@F&8Gg>W*B5_);o4wKAi+RFT-+w*A@GZJO4lTBd5!)NZP}Y*ID;P1~Pj&p8mf zO*?R&_kEuCJ?Ea!dwrtk#MU#jjroXg7AxgXXoOF+0wD_SW$|os{;j?K2a>>UC2R$* zx#k;!rB4E-Lf zsj`z*!iAfSz-$E|$eC+7>DpFjkKF&zUxD3{I~G>=v*;|c|>*kdTMt=l44;<2q)f^NHH zQ%T`A`;L_tq>Cd9GxO_u5(SIgb{{p_wMvWDFcfn|*U&7_vQ~L|s<5r<{XxsNJTK;N zn?aB5*>oXV$FMhm=vvyK&-Mkqwzs}4zAgsZ=D1f`r`)XVSjPmAnYJrhul$k_`-w*A z`rrfQ)j`M`s)VfSlDEQUb^-x;K*8CT1{(?D+=KA}SoKe$p z;C0$rSEYsfWdrs1gu;TxIgO=S|FZV~2G#bUTw?wjNk2{*Kav47nl~8u8WlcFcl2wy@$uzPg~W~|1?gc8Rz90V!&`1 zUBr1}(tH^yJdJPj!g}yBu~B0$aZf}o)C=J`PEufKm0ct&tg_2w&#y8SJG;u%=)a@b zH0J5P!#c%#dbd-FW2@{3oX$DT=ELWV>zu&F)fm?mZ)rAz00(X2+6s$l_WlZcNHcZa zEwwVZ&L>Iqm>x{e83H!cOlpW;+(WEDo5n7Uy&C&9KB{p@W148;2(b!z?O(yHY{L~e z=)_eVM-Lx#L-tbn4PQrB@vQ9O>dhICP)QgAe93K@MwVuje^>DjhOZ)PDm0BA{0f8S zL8eZb1)Rc|d6|lDCVY~=sQ#>P89a$i}}ph!iS#EMCm|oYF~bQWa98Z{@H~^-|s~IgN5`F zj52vw?g+k;OOGhqH!)tE7|YRJc&+TDIX!?J##pnMLIi1y6DKf9mZw!LqcbLO7~K%{ z4>RWw^(+oBwu3nZ=8iLaig{SOn{9Kt-8N>AuH#5cukHo(XjC zzx+wn-;-7-)o?S8wT zUjQlGZWBUCo_c%8g7o|Cp|ioH(;fUndqN=I7H^HW#-7S#I#ZcUB9%)evzcsXXQI6$ z*_CZeWjANjx%Q6s&Qv;;?HY0FD$lk5b+`K##3Osu@*iOReu9)$EiW{`yhBYhFq&*mX-{zP04v D@o$+! delta 2060 zcmZ8iZERFU6g~6a+qb)~AN2LL+m@DETA)h{&6ZM-LVyYc3Ro(oLir{wLN!v@7KkD& zSS5%cl(86*sC-0H#aL4#AsRy@#IHosq)|i#BE*nLVkG=PB-S(2b^}g!&fIhEoq2Qb z%zL|Y`pzi__vClHH0>A$+BM`OK}3Kw3W0v{x3c#4pG-bb1}sp*bfD4KKHN)O4J49x zjRO|R;l>zQFAANT9;H0?G`UygCO7(MPG`5-L-JEmD01W#k)L;-%c(Yp-GC3D$c%m~mz$Zf{u#lzBk9ra)jq?_%Negmf^P7Uq>|iXa2!?Qs8N<$+2z>`0GZ|b!a2(JhqzF9 z7|jF(yaYF)BHY*4SCnsrbCtVjB@MaDDj3&KCm?!LS4=y}?mWbJIIO1j0kYQ`F*T2w z6zl-@aa^tJ+SX{(hIK8fPPbUnG#+|ET`j=V;zSh8uB)2KF@^k=kQ00rB3Ewm4U3&I z)N!i=zbp=zHf9+L9r1!W1Rt47pDnf-HpUo&`U#XH8BP@lt zp>PUq2Xjn?wOYTYV;YQ$BaCD;nMaLO7*-eENA!fH8as5*2gXHNYI{`|@P}E>YpCvG z3Uaww#SG0nZn~T{3qjwP+Gnz8D)+A#Qb~`^=oCyeSIGT#M(mQg8>6tr*h{=^?5FoQ z4ieKWi3xZXZy4{8Gm{jkkF&SPqH*>v*^6#+u-Fo}|Dj zKFL6i6-2Dr6mX$3$s#%!O-w8+&VnX~zonvBK7by!C44>7tsafA2`%B@ulnrA(QS1`kRhST z+=w15Hn(7xeoP^Xa7~mT0cTJG59f&4xJoR*O=2-d(OZUz#L0M!I0Fla^R!+|oWX}L zB|3;L6%Cp+kSMzWt3;bt+O*O}Ww$t?l@nSyLFGenUMtsmD|*Fs7XPv^g<3QlHL!N7 zB0tzxu}BCJJ=)=Pm082?TlU}f@d z>Xd5W>O0jZxAv^8ZoAWQFEqO60<1hC0%jhBkA~|inyk%9Y5qiaR=^mRniB{FQgaNq z%B?c^cDi*ojO1juPVV!@+ddc~5Rm7*pMs8nue2mm5|Q7fb(Ay9=kJ{Q3*zw_m2xAy zRmRS5{$Nvu_Sg&A*VDH?T^>r$A64;nY{e?)ZspP5r9YQ0JoK^(n_02ECffY;+J@Ga zb+Gj)JFk6s$T(jnn?iLm zIdem(kwlANS_V6MhbgN@ zBgz5zMkB_$WQ1qHkoG`L;G8zZA+V!&hz>yYaa^8LALHB(KQLuY{(dX_M7oJmn|ZK4 zJ6p?84dsiXI@;#FJYMF@iw(9I_z>mn+ak*W-Oh2 zWRgY(CCQ>Rb|0uiVG7Dl3QWVL;dGo#k&QPSG|7)Wjk}sV@yhd}<>c-!n?S&6C?f=A zzF5Z1_6p$2poB+I;`_hn7QgdbVaao6>Af*~+P{9@T=}$dcjhYJoJcDBIYdq*CdzV; z@K*0})?(t2x18#@sO6N~9T&&!S)(TBb3}Lty)vwcU?GGwDFE6~5M!B;ffYb_9hES= o4?PP%!@~Hsto!BNq^yTAB)Ju%!Yc~vJw&gHoQF=F=$IJ$0rduPH2?qr delta 433 zcmZqJ!P&5bbAk=yi;1?*^^B(0!LA{p3@{v^9mwbj4Y%)0BP5d5QgVKy5>p@SY6GPa7Gs(KPWRf17sFD2ykU!NNHmS3dg0wqr1Fs8iNUgDT5h<1w%4J3PU0g z8Zo3XSOP^%fih`8F+&DpAWQ_(=3q5OK(S;XGzG#WAO@LW1UAKVd;Al|QYPzb_aSa! z0y-!ch(9nfF?{&K2zDM!jt9sS0pbK^CWeHsaJlXL&l#Wc3QTEm*gRu>pw~9X1i99I z4imStd}T~XWN~0+V3-~d#w5ZP0AyWZn%)$~G>_3_x?(t!GNZtD*KnrgjLZfMY}4OI kFlleki)7Mb61xI)#S<2=-3%d%nHXLH?Rvs8nUQ%J0DQ-0SpWb4 diff --git a/Partypacker/bin/Debug/net7.0/Partypacker.pdb b/Partypacker/bin/Debug/net7.0/Partypacker.pdb index 6363d0cbbd9cacecdd1249614626df82fcfaa268..df969beedc60eaf4c53b08ed4f08c2375a950112 100644 GIT binary patch literal 12596 zcmai52|QHY`@b`mXs6{BEh1@Q>^p@SGX`Uqlw!@8B3R-#aNsSu*1US&xe z?YkCQ^{Tf$?R)y4GjlIv>G${P&fI(F`99k@=Q+=L&dJfo#gTvz5coF|T%Ht1%@`w+ zq2vXkh%5&;zTndKWQV|aSHZOwkZZ35?}^xNK4KwqJvjtXB7tW|t^hJqO#Q~)Se8NGk(WL;Zl}iHXC6vV6~Sx&2}C7jfQ4GAgG&iq z%HSFWF2Dkr4lei}{*GTzCcKA#7!=&?mplWF5e0Au@i;F?5AO{C$`T-W;5!CW0P{lKLJJUJXZ!@s}4H3HD%&(M~U1D;0>c!oHrAOW!h zpAZZEHw}EsBf8*I0nq@Tiij%sgnB@U0X|6oIKZbtPxzo*lqE*lh<7xf4|)c|K|G?w904B@3!<=F5yC}7 z#fUe`LOC%g+ZBzc^P{50y;v!L&S#@>P$T#^=IZS9BP!z@(>BD8PRXsB_%+09{^?wRERj+mL4NpH zHMJRe7iT|FeQG8@2mvg*bw`koIIYCH-0tF3;4pZc#VhfVt6d8R; zG%(hfTt5*UprkOscnqdiQf^Xy($1uE%@6NPpFh*-dO9;H^V0_P_eXa<@S4voE?Dq! zL;fZu=A5Qwx}a;c-S)4c>*=4n&G5M7s_&vlXIwkn^~B}MIS-eMUbFNsUv%|PimIwg zp1Z--TU7n-{0pn6Pal`e%w_-gbi&K}H5)Iw%`86ER+L06y4d7MbouG+`q9?KWw_F; z5$9&PFx&_(WB0ln%s61#s8+6ykVx)MzGQ(Ab%=`6TLAnGx{h58u#Ds&5}~{hZoGpS zgq)CQF)A8l(Q1xnRpH&Gk8V|;9_#;snE!Uh-1*F+X(=}@W_;fk8S}!q!z$@K>`n#- znzqbnu^60AfkiYyRZNE;T z;a$G&+SP);KwzxSc6F6A8hfTY`62UdNqXbmw8fDdiYK(L(OmRVbLz~F4xVAYv$5Cb zyZO~<#nJ1^ zEEm6&y!b==PF$w1jSyXQdUd68e`My;S5f!!S^L~LOO9?-_%x>Jmv_1ssYP?o@>wa9 zH!1!)^=RQ|Vf>6O-_w41ZLXjESAOHsWpzqfzZYGo4`HlI`MI?9Nz2lGziVUa_IF=S zzOGvOyx-m9sXQCEcz>4Ofe6dK&I#G*k9T+GHF@b@S7!w$X z1)0D=nT8GwoTFu}6)qM>iL4C_gv?k{7)Kl)9TE+K6HCAs18yXifM>v9F*qWzFd@L# zKn86P8WLh*9ui_=j+&dYLRc0SCdOu_RxBfPmL-dc8k-qgm@~~;R&0YgS}Rs0kBE_u zK*SgUJfk>VRH%=?G9_7&4E0S&#-@g5rX(YixyF{Lsg$3!4^dM%4AX*Hj1N}%2 zpN)_Oe35_)qXC!0VoD|w0hmvCoCN6u8wNl9C~mX}0pmm*DiHDz2Yx&`DjE?=$D)kF zmLw}9OPJx{8ub2V1mE(bxm*~C5huRni;aeI_$cD*?Lcr3l3CsCW@4 z3Zq-M_2~bZbId-*`Q0oaF0EY-(ZrRMunAMP#IuPiM zhQT2lkHPZ3rf)}z5v23qoCTx0S+vZA-~Ws=wJYF>SOOuJ6M~W5fBCW$nsQ*CqIyqP znEh6lrl@znBaA>oAQChAY^IQnQ5sEqe-}AUK&&Uv1-=NpsRB|AKsV8-KO zMDezb4N&ST&2nv(WlJ2IO;molXsP>S6C4ycw1Qjk{NAU^gd`ZJ%tP zLs0rr&%@{)qeDYM48fSczq02CB>q*noxne{|GjqG5LhYTzlOD2VLlsz=HL4=X$&>pC^w}f zsCD@e06LEsErw$rlXbIha}Q!qK+B{E-y5sB7LdTIe8;8L9M4>DWlgmj!@h0-S*!UQNCv8l(z5HelwftRu zfbVK!xn3|YO27v`VF=iu#T@v2fmjj;aR*P<(p!TZM-czwmF=5TOc*s@<*DVtgy%!! z$snc+M4+z<_?YsE#om7-$K{cm2fFRp6Gt*OpZi_fxv{KiXgq}}W)9Y&Lh1M?*vK2G zs^sj+k7hfIr1Y57(|^B6QrMGc9?(De#mpKtoDxz%H54LWj~ z$2yIn;lA-vDCnYKG8Cgi%z5c&%`PIH1Y|=&&36CkC+T@jzvd9zomG1|@IyIa(IDT1 z{s!Q_CkB%b=0lv%{p4|rVDGc+GPF$j(dv>?p0$qN+CUqUkJNuh=2P3C?duad-4_sz zXsMm|J#D^yz0(JQvnZygXZpWip`|vCapV=Bxvn){O{I}n_6_SL?hVIxo5tUSlq%s1 zPkki@GIG7g1$>z$&c-NV`vXIGyx#uvT=jbwQViD2p84%=A$8Q<t^(70yzfr5JJAAd;7}fSGFRtPvm5tBxD7jjx1U6q)Y?hTook?4^1*4Vls3fh&ea)j?_Bq|A#S9X*5e_d zl64j4vg0>OC9sy9m>jhW!<}k3d6L?vhHM@R)+^mdlG|V$T4ElzBAp0QHvj6da~qeq zSFTSN8eF8|-HXzT5|OAN8NwD2l5AdTw4zN*1Jry$TDiaT_Ze=-sEa49RQ$1b2o=CW zl!c0LlQ)$M+hI(g&RO@-zhf7?LQhBN-C{mx znKK$`#fwH{WvmkH-te<2492MGf=FqOf$h?#%wq``5h{R+ho%_|OxsmC5QGEduj z{2GdpK)}UyzekBqf-v{`y-Sx@{d8MK|7*xBT%MJAR=RoCKVozu#?X{t# zr{r?)=#{np0Sp&wQdfU;eOeEJUkqn7?7qLirS`-1%7|RjYYZqQBJPMi3a1yf>4`tP zz8rAQ)_a}vLOJm>&K;!YeH=OO7E9vWG};k0`(a+LsS9*|dA> zXu1asVo^dcWME`=6birVCLaa#!#e4V;u^YWJW)UstGMzz{-@WC?xDphv=-jZL? zo2U1-kkBvsA`WV_4Gjlb zHspY*`=Hx(1H?Xl>r-)}>YL+%XFIDxwXI+DVWl$a|Jt=0(&c-Ht+EY&?QrN*0hzWm z7@uN*Su$!luwXQSX`fJlr-`GF+>y+dfu%P$6t{Fc=HI{6<}R9oXF2^DNM-Ji$=nNN z8hurCy2g0r)M!)jZT-lF?R~n*$fO8C0xc8$4m`5n1i?Bbn?K|edtCEwAaQRlbTteK z9yE-OCyspt(e4^SH~sn7UADYvP<+t5^S>d{{!B3|yf<)Fs9orWjoGP~RzAU+=aEx# z@7?8Phb#M_bTGBT8j_D#AOy2G))HryE1ZJ3#yR(n1*MVQwk(|gjS(W#%EJM2fSv~xj#}mqr}Q)3PstM%shD;W6ew*l!I}Z@l>z4+ z%AufRTWkyxu4YiOMoip1qd51sEW|4s6~@ct`tgs)Z-AJLS>LVfTDn{hZyoawkn5uigTS_ zW{V>u8V?(g&>56)FzTf}<8Q$w+#!X;+^f4O?*GKr9ew$ITR5gdFSU!PH_9K)YXjWR(ty&10Vxt;b&D#C8PG|yhlsF&s21+Ij^*en01yVgJLi_xHp%* z%G?1xql|D(axX_rq_Dqj@>1fMT8LVgDv^re3HUmo1 zTVfl+@`$698jpy4Y0A7UOFeKk&O6&w3MIq@*k{MuOn2US;bC_|f&oVc;}zYzn&Z`G zSHK|>bs&-V&?CcR>#HAYUYDHwDnsp!E{jG*y%{D|`Rx&y=q>5+%3WEugt0s2>Oy*F z{%9G54+@sH95KGopVA(>0ro0XUztp4%ca%K9J$A@VwrM3gfND~LOlhX-u1AH%H0Fd z_EnP|jG{bwUZ3`F%)e~2^6WWy>BzIexa^|h;a7?&0VCJ{()BO>+RsA&m zX1Q!XgwClkA3eLO*}dLH&*A%p%GjZy(g1d#Y+Nn0Zu)0x{XZAHX@@jVsXw}GdjrRS z(kxikDF~ng1*i8;Jsh;X$6}eUJpK-(K(QM0oW!G^yWH-UqpLhZ_B-zH`U<9 zeb;pP=|xYP=1s;>9w8BcT)LW7#S5Li(kPe_pNkkM+nNd3NuO zo5pyxM@E_xsA*vhJ1$#33-<84Nfqgebqk!EPrR8n{rxSS!9pY;x|^gxB0I`U>z+%B zOdaYC#)XRnt|_B_){k}5cKibeH%?f%I2MJUmkMTgYww+6S(r?YMG7%pQn0~IsbaEUARm0|S4GDMSzL>e&U z8UqsO)%RBN+t%NBHdyAM{Nq(~t7M`LPZZ5nO0{u1)bXn`_{Fv%ng!Ms2Ia42Dov8C z4)IF)yms6L#(u7ej>=vXAGt69!z#K6>{7vzi0S*j#JUR_8pO;E_FMRnu`?k>{pPOC z$9whdLrL%YS0Q$7tUn0hq`ddT-}gk({(hldHa&Y^{vfz?(T54OsnL=w;^*aOTxq!E z=~DDod27VkEn9IEwm$~*ZIJQ^eNahU6OsJ*B4#L_JJFQ)Nmdt=e})#CT+VkX4LiI+ zzi4i+y?o!=OH+#J3*=cjENpo+9{jm%4*Bf%q)?|bYL zUYfjh-%_&XUU1iPRiVIPb(`w#xP#*D18~lu5ZjmG`M1oH z*jLQ45B@U$qI=Pz$lX(K)UF-?qJuiCP!QGYBdMn7iWk?BVgfR`=^#nCUDZ8@e&v|k zM-@En!k2;r!7j`grVmTViNc3aC=iZ4}V^a3YFKsg?dtFuw#*NCPZ;&YhS?s)p8^FIk! zj}hZK@KrjFa}&sP?QHKh$<*@v97j`U6xZQ!q=(~6ZC5;@#4+yuBlznwwOue4i?_b4 zo8;BtRGQr7sbRWjpd{dLNl{idV12nqu7$>p{;pH;YHTNU(`LQX)DIW%^)4>3KUBKV z25pF&s`t1`5(d1QpWMpuu_C9>YfOClmArO<%lmVYN&1edJ8gv%R{UlrcXifP$|1SM z^q^rB_W#5W3P$G&t0hzAr}-Ocng6sgl3u1;b}qIP|4%Lpd3aW+>u~o6jQ+9Rvw1CA zUbOrap`UNF@qG;5o7)VvJn2fl+XAtEeClh3#sF$f>aCp(K^e6Jv1Bfj!^6E+vduId zHrvs{za9=BkxboW5b|{Pa}qwpdIge&@ljw)U&xFKk0&{B!vrA33h(8j>!2s84tq8= z9^ON}>Xzmfn{bFKkFR)#=0ff*2|Zh+^BZ=6Rn(s=7tH>Pp7Plxv?NS9Wsv5wN{~f( zhVP`=E!n7=)GB{?OUXS({aE{Yv+uj_{!h4cye}LdunSH*?8bke`F!d0IG7+Z{NVec z{C`57_$&dtFHc5zM-D^nXU_k6)}zCYlI;I^*($3*eEu2Qc#kNQ?<2ySed2$yZSy+SP&I0@8ESgc$jD_NFR2?p>KaHSXGBb%t)ah?Ry$(~ z8uhew{y=I^RLJ8<3PE`P6WRS(gai|iOK*QCB#N%sCtG|{oIh^ygF#3T*I1k=ChoCX zt?oi-t3$bhlIOY(=ZeV%pGJRsgfBFDoerFY;lTbOTM&!OEvYRAwRBL+aer7dxrRn9 zb5N+hHclHaBlY4XHz-(|_qF$Vzv|0SG*#D3=AVvZ18PYpxT|9(`wjpg>$Y+xab? zK*FLhskbwd!LF4jD3Rb6s;a(|j7i#ReceoAAvt}$t^KuZl>$s)f3UO}fB73pYMaLh zcP#X*Yh4@OdmEUCS>hWV{UL*9>xe3oGti~=X05)_=^tqurv~IXZM(dFD1jnUpJ%?Z zizLMyo7?S^XFX8!$Pi!nXz9~}uM{LwW#Y8@50igk<>H&%A-aiz2dzlWjlTU(s;;aU zu-O~UWeNwEJpu!Gl5)Mgi4Aw#_I$?re|z$7_ayv{gTp}yMl!U?;Y>as?Jbq3wEcY_ zwgiE!T(vNy*0q$Pyz)orIDAg@?ZrtQ*=)Q>QYu+-v+l`Ul^3-985wQotKQ(dEq&x3 zV2_I{DN~tyYvUNRN2qA|4GUz3ftyo5VD!{eW^R#(4Ihi&goNDDsoV} zFBdE?fWG-sY4hQ8imJ!%sxdbfrA$ftgU|t0rE>lB3lQC`F}Z5ige3aW(u~&2dq#g8 zjF$KqGgNs3As_a&5Kn3gJF<5i1f2brNy2(9>*HQ18@8MfpA8$SBB&DXsG z5qu}(2@9*0DTi8u_2RZ&y@HF8MYsuAy>V^Ns^1TxVY4FLcQnx+x|NAnoQ*r~k8i{; zU~;2T-{`2`n)LCgq*qW*=8Ut?l1|>H?K)wlza`ihFQN2}GUwUZ&5-bwMc3uYm2s2? z&T+%n?JoGz7ZSpvnV*=$?JJ&Gb1zju(8MzO?ytMp0dO2Y1s>02gp{sGV8ZgIzo8>%05J7*NY>>Y1LC{WmArp{XSiV z$9IV8p9xCG!ptW{>CoV5+LNZz4qCZyJU;3rrNzxiMzw_$>|7bvp+?-hDhVm(I`L_b zi!QnBW7egvD_)K#FHjP=27q>n%O$0O?9`Flug}w_7w$Wy#{VlJL{<)ui)+~14|T?@ zI0dUr(`>0zBRqJNG^3;HIz?v=%fdXF;&4p0^;use$>`trLTnwEH#_aTR-N_Vjum)9 zAW=<1KG3E@w<<|KlC6A-;;?0=efFfo*R_9C>iB{K$U;se3Dmz}g%Rvp@TKQA@oqn9 zJ~*@lg0s3{`SLSe^F1oXf3@Fo936=D6nLxv)2%?`SqAiURVekmnfW>Tehr^ta+@yj zlB&R|*r^JH;mA~ZWSCM?l{_*5;i!TSsysNUJsBSE9#2Gw3i3oG2{bV{_&pYQ#F(fw z9#JL^2PdnE2!R+&KxPw_h9NpcaI!injfhae%Xk7J7wZhqWe0#`@A8PwXr>}Eg$U2U z%Oi*yGEs4?JfaAABNOGp8_69>9vLmY(@|VD9HA3|4iZjd7~q69qA2w|KKJ*P=|m*# z;0j)7qyfBnYp({jrZ^4n!EhIzwMm!JHOxWUTaSWYZ5|2;GY^e+-$71BMd19 zk{gH;vI?AdfkVeFC=lLj21h6$*NH_CGctnM!)Kl%0gD?VgwNx^Jq38r+Y?Cw=YPU; zJ8y;!`0WJOx--GGHJcX*t`}Tfvvm33FVr137q=REY)Ov!So~fIL6m$)lT}m!E!1i} zI8?x)3J!H}3L4LcuQ| z{MLcrYv6Y>iG)x{WF#E?#(-aWen+=fY-|4x(%EM;MXePx&xd;f2jZsRlzm<8v~9ZfS$O9wy5>HR_}KWaXR22 zAtvB|s0;L;Ciq`L;zLDb1UOfc_*NNkhkqpGPoV#u8PLzu0d*c}I-o8YR0lMVolys< z_eyQ`5OcX;&=D5m$``SCTtvj<SW;EJzAq zaD%WYiOgZmGuNFQKGJ$^YUI%5oHETXf$o;)m0N~qcp`PKd&zqgU;jMbyfM)s`@U^p z(rL%LDt6AXT-5-l^81Y%Rbe9a5|8ELhRwC~ij&$|E1r7PI3ctmD>9E!oM>>{l@Z;B zkZl&IxCwY+K)O)Lh9`2Ndkt|z1)^v^$_&Q@gTb>90m`8;g~|aW1@%#*w6({n2aI`R zIkwrbz3%U=MQgs@)V%ji>ExBaNbh64HhRu@Gg4{{8py_^=JbKRw4c4KGE=VJW|MG3 zWx@{U?S3a#J~?|>soi`~cHQ0SyVq+C;su5&+F*g=5G5`qnolv%lF^1@2UZ8l_7=h= zMF|0Xhf0--+Z>k_mls!{-TmI=#dE!mzo*4z{F6HVLrp=OyCs^x!{=jaUYZIztC~Uq z2GV!}jLPTF@xcT_Fg%MQfEWr@D8x8{>}aY8tk^)Y2onxq-=$r)vvpbf?Stnve7nhc zUAnU^(cP1iZ(d3NmK7fH(*Bu^}|`*AcV%_3VCekD>jRXN~SUo%xDfPMtTth$4Q^h77GzR z8x;lf1RR9Qji&L%hyZY7aj;($Ha9eb;gisy_n9HQ%N4WPaLOQbuH+{O3ubXK#LI(9 zqtCISTYKBh0Ye9m`O6L956#tsPIYsGr>4sdmb-c^w*xo4=pOLSya9Irsvix`!0`7E z4CNz?eupqx{#%5Rd{)N4V`cmcD`f8$XBJby6Y_#Z6q;u!D&SLs*lZA!y3kR_kvIh5 zHePE~HQ!7v-{s{r*L7G#AGr@pC`Q@VsF1~^z?qK&v3B(zh&Bny)wS+0A^%g4OQ*fgV^0ODGaV!hoP;L+^2*N3CU%C_{btL3u z;L^q&wh^vraW7gFqDE)Ap+XVH#)+aAp00vY*JzjM3}3O7T5CM~hr`tIzMj#5h(iIZ z0jvuV7A3;zOP9U94~Aw-yHngN2L}7oQEj4T)Fyd@8fG zA8cRj;pk?)EA|>rOyjZPMgXFc5DXTVDHaGYE+Htja&8<{%;f9i952%;)T6TxlolT9 z*e?ew9WTp@zgywHRek1GA-Cw1%T~sxqU!T6U&#S5I2^GEE<9Y%{Whrw5GxXL%x~W5 ztB*Qu6B{V=!Y?fvBM0ijHq{QZ!e}Te`jjHZg|^)2FnX2yW`&3a5{KiE4V2yWP-m|x zp)0K~eYGvS+ii0FOm=u51a2WX@lD@DXP|~51(8RzJ*LvO5AQr`V-~Zqm$)}PB_s4S zNGWhILb@8ATy`kx`zee&*MU>QaRUp4!{Kpp)|V@{wjuds#G?71qGOMe>~{Ls`Pw%KQ**h#zbW-Nb@Lok@8QG8e3S?4mF_9o*l`ZaR{5Vt9wW%P z;?%(t!;jLd71R!(4UOmIaIgiL0G<^|vKBmytR4Rjs&LlPV*ZHDk&J_#Zg$qmt=OSt7;bxl#Yi*6t^9Q z^>J?|hwSRQK`Y%n{=M3wC!-1O0yMIZqrQdxU1-P1h|Ykb`Znic&JF#DHNhMD5f2C^ z`~T!M!?D}nKI7W93G%cq@SAW*XpWRT{Y=icX2KL|S ziKQx(@V^^*ILHaurg@&>*xc?J_itOmx55X7hA9w~RpR?I? zsFT0&_Ovj$V5zf5Vc*IiBej8}A`ny|7W48oJgt zKU!OxQU7c_j%K*RAjTJfB?H0{#ah4~GGGY$( zgG!Y>#iZ52>BHOmI;f~N+%dZ(;qlMgxx`%Whk>gdS40Z0s9Tl>MFx~z@f&0Nnp&Xs z$DWDD^U~#OyO_m?9B_444$8X-v8V2?2|HWy#v#65bCL^bp=TdfDr2ecnmS0QG5zBo zuQrP9cO!+yqDGVHeRMKvQJFBBz;sK%Bhs_Q{$?4_#+~kZ=a2HAI~ApzIJa=pXcf5( zq%!@=)O(=JYpW(D=+(qg4@`U1q;jG8t6YeU03@z5(Qo2CjGqg8wZT=on0u3GUDPUoM z6f_c1HPpEC_m=SRNxjzPb!ey?ZmhO7GMp*OU$3xy#SoqxK=)SbRV&Z&*ezh}{XX zPgXt+%DDH3P26$MF&j*CcJ{|gMf}oGgD(>7yW5 zCuU{v%IhDXAls|;_4Vv7yS#vzMPEC}Y*~oA7!yRx>;ow`2UYkU9h5_O+xRVvn#vb;aFgRnQz%F*qS zOiOB8&FJq&9LC|9)~~OOs-4>p(r*{uv#+xTPRiH%<;$M?ketg$$2<)cW_`JOY^d>=v4XZ`^l#i8EO}lgLzL`;mt50YTrEIyqu$ck;f zPe@Z@C#K7q0~`>^6NJMB4mYDdY<>?X1Ily{^JdnC4Rt)wV%^~X=-><)nQndCD(@)$ zFm$u8~dSENWn6Nj)RP;}~0uw#WIS*U^R5o|4 z-StWQ&^b|d=sht|QnExufo=R_=p8t#Ca?Zp7=sM9Iq}cvgN7GVX31#ei3uWDOw5hP z>a9aNu5%>ik^4bb0;a3#Q1SXpN;I0hNEXEd-NRnRDl#5Ff?~d;1avaq?6A(caKSrc z+sh9!0ADPS#%A@^y3?at3ZV59v~Ns&85!r2UiCgc_roa1Um^Aw8iWb@ie`Ko6!GV- zgM;(4D=oaW-GrK=8G6a-N?bpAAXkkd95G>+@EkInFwdwv!Tx$ z^*qKnY-y}cUGlF%5sq>Vggswr6)jcDUu{Y*R4RFTLHmN9AgcoQwYeQ-c_(my2NsOC zCMY&6As=p4vL4*I`DrawGJk4Hine8dZPLqis@wkBm^BbBm6re9s|nIqS{}Ywn~>^y z#Bb!7wLU){45X)nUJ^dAmS4+W!x_F{t7n8?<^k&7W{TUp!My6!MrM^mXS)YJtlM%*> zpF-g(8~YmZ;p$}FsxJd&4#+>Whpmv*(dkhF?c&c|`x7DPx81Mfa|S|TKVU%q`sL)7 z8mRKv3imZJNA@_SH9c)+iT9ZG!lf-_AqYiqCF1&Co}={wq8efiZ_X~(bu16tmh>}5 zcbgoP6z?qA>It}xZ2;Q+X_=);8;o>P~^{>3D!QTo3+ zPKl?d3>j9rdNP5+3l*4egOo>r$2B3vn=3?viQH+@F#oksbar9MK8+?n>-C{)cX`{6 z=>C69q)k>Du8M~9ElJX67r~+4Syt(|bE@cx?FB!gkMnEI6yM_h9QhNxup)O%dA85q zDkE&)y1DncM7xn79xyc5NYMwNs`IcLCfiI8+SR`L;Wgy&5n?wXaQ2`9+Lz(oJG@~J z1U1k4tXGA0+tqAb?{0Z4E2f`)4A9>c@c6wxl1{^J->|(%J_$+bES)wkfnil~$u_aw z0&)01UjnW;Tb|E^?cm1h>%pUmIke291dME2i1i1L%bxcnNyx6kZ(2xD>Q{<}Bs zsg82l)*z-|MmPHR(-8Pu(hQXiSi^^2Y=$GYvSh96gZinqC5(MbMh{y0=|7>;LK}=B zVJdCKw{qz6`)VHNBYkXX``SJ^=Z;Ud_)jh}NuMyaWjn;5j92$kuPm}HWptcg6gU3p zf8qxOBVXH#$A{RPql(R>knPs$ICrcl`-Jdk3A_Hw~WR!Lsb7zwS; zyi4hF-bim%G~RbK_dmJNdRsyhS>5T-X|2(@FWeXKoeq%0_9+GBrv5ivNM!i7$GRjw z*RM>`SjMJ0t}oeQGdX=s!hgc0>wUeq>l3)`ENLF{h1SinDL!^5(<_oeG^6@_CTl*O z%j5<1<;j`~8Ir_Gd00&(g4|XO$+g&CBQE%E!2#LSop*+3|it2PE9Aintw6 z>UxNj_123ril~F-vluYsg_WAmM`oYiCz?=peZBk|$m6VxBCQ+|&FZ{LD=k;Lrn=9e|X zHJdkj{*OOs<7^Xl8=Dr43O~{xFHskheyD8f0? zbTG!ZY>~XK*gM~Hbd1+Cdd}D4fUTERw#$VK*mDnsYsEvC{<}QXuRC1F;n>d%R^HYX ziSp1wN}p%6d4f|AH_UqKv<0ZL^H!~xZO7g&+#rjSiME?PcAkR$2e!7wtkl#QfRj4%P>lK;C}!e|=dW)iWm*?ipDJ0Z z<b_8X($jnt4|KEOVzVF224#H$v77 zL`%j7H`MdUImwIA>85P@yo-?zh1DyP8r2pz{RZU*-d*6xF|>D*P-k5ivcBfHs`K%C zOFojKQKEMC>YV{zpmR?o-9`b%lJ}Roic=%#hIgFT`S2H&PRu4sQt)O4LsNZps%uOK08eR+#m?7kL={=`^G`L27aX#eUPX%2grX%&ofs3n&4uOanM zRn=WkLVI%8mb*Qf&Ik3HPif!yN%WrkQWc%(SG%E&Jwk=A8v8q3;~tt!z4b!Wfa?qi zWxAAM;hMW4+sTzQp=H)_`r+70{g9+OqVEo=rS;V>1?T6oYZKQ~kqiqCbCUah1%zjWfc^=~VSoYtSo zV_fsEvXYe|A@6U~{Q^r#4_PUsisSfqru_+(dA_#w7FPIx!*}zzh^_{;d}zqwB8{S4 zJ00pN?~bLHH>5?y?I0m4ab-%R(FkhA|qr)1u_zsiXh;tMh#$& z5m{vvqDmeNJ{|;L8-UI~13=nuZ;R6z99P$fhQe$ogo zkgkym>PDx@O5RGCD{8?|*(CmMMB8k&V(r;*n;!ka)FCn!^#rH|Y?WE!!Qi&3& zWCW>XDyhVnG>TN>Kq_(9B_%E;C5lLiTSQ%K2y<+-?o|zRRy1h0xu$JWEEv(gyc(6ax`HC+#Sct7hBS(0q~@;vq;DU XL;<)9F_YXF*Z;2F@0}k>^BC?ILMgn4I5@)p2D^0XJv!0nn zTKgdnsZ^yZuB7~yha^?0{Dl0Dyym|om4|$1cDm>6+!wYWsydRUr_br{^yQqdyQlHd zz2%dK4jtP2{G~6Bd}tXL{xJ2QslQGC{hR;(>n|7GKYe|v)4TRhW9zGbd>56XpO^9X zllptcLtl8l;qRJO-_V`jjtGpd+1xXCgl}v&JLaBf3NJ9`^cnq@(YCh@M+AOgI+p2K zC^SB(-$$J~>gZOxeI&Ae7=OP7q2~$6B&1Q&n&k$t{iWSCX7$;5eJQK86*t%r!Dn`t zH+B@psj(>tHFga0X-Q)(+p^liYr3A$1J5?w#!YxQm(}LlplY3}G8d1d6>9Yagj#(G z(kW@RV>dn5cUytJZ#(mIx+ivQKk)j-f{x}5PqdQVdtYfh4mBP`8XO4?Js~*-Ata|E z%Oyyt) zu462rw^hUM;@{1IN?oel4^_g)feOd;3NR3+vk<~`4)VvtRY5r|d#C4_gaeq^Q^#~L z?>&shfhHJ#|KH}U*M2`)rn z;n{mS(%!!7?O~xgqDf)NH;{|s_{j6^R-}V8NIF<$Qir2?D?;;q{H4`@9YQ~pm&coj zyVf=h2mSCoJSZ9brYLS@!7G+~9y%^`djn%C%{WjWW&~m+wPw!t# zzuz)F5SZ}oh4}4o<|NglgEU9~UR5zY%2lbvL$$7}T4j-+YM+j3M`4+Y-W)DM(&%(; zjQ*zZp4f=8`a{PzTY{=yimGPEQ>yWHvPRwOcLR6FGrPNez2Uh5rjf8#%)q4T7n9Xl zIHdQo3si%RWMHCN=OQaZYm{DG&Uyg{qs2>Au4Gn;7ZTNZJ%47?Yhse;Q}d)2vNmFu zZ$pTZ-GC4!`vK$~hz_YiW+1bWlY^lT6=$R(aU4=4j+3Q0hw`@~AMzPWEhIJ4CUF$9 zNwYu8<~+)2pI;gtHhQ)z~S zQ|T8N3VtBAfajZ#Maa95CCDwvc(XH(tRx6d&}mmd2W43x-a~m=7=6m@&Cu}dO=#!< zEep*LQT~kCJ>%R`(I$O(dqBG=*F8F`^eZ`xxx=aLPW| z=k>yUUUYO7c|fPoX17Z_{>TA&phugHjBO%E{{c`*3QFkfIp|kVUU9k=3Nm^o=9%=dFJZ=ifE)G8nF z&`C#ppuy2{YDH*&l7qH^^5;x-Sd`{ehfrS6LHP;Fryyk{v7;`faORzHjWxK9@Qt2h zAIQrkeui0;dx?|KPcrvDKv~ur+eG;m_~G5S;Qth`vfzJ;a)SRE zgy8=S@|#g3U*@J#4gzx`oo7_wONDGX4#|*h0AQ9QKSwz^@(YM`o$H!lyJULijkLqJrML+n!FO1}X@l{hWVyQz~ic8X?WE7=y;H**G zjy!7OuUtL9AG=3vu*T((mE(|z9OBdPw-p@<=q60wo2759KI5XC^djWepDA)E)Uvu0* zYq>qg(zRtr11I&|1G{4eLfaO8py9vfuI9Fq%1fcLCw#a4L|8g;qg{v%`4waj^6x5$ zE7SMLqmb80hpH=wY9skOn(f*0?r5V+PV=+*b&Fk*o#k&H;R7Aq2~LKe;GAlh!S1>f z9q3;Ld8y&{kcGfne9=Y$A--rkI{2za%TQ4hg*4Kaag*W9x|X5HCm~dG@7yNCi{Bc) zZ%Lvpq5{z^UD*80t5Ng#NTn8kq$01bXrB~*X_C6Vn+z{yW+H8TX;M>TnWsX%Q2oLW zzTs<;yBWTzhN^5v6L*HNiaY7)gjIaqp%BCr-;7%n7iU>Zpq`Pskd%5biN!Ni6{ z4wGsymAsa!7*(0`as0hR=C$OFgtb|HUiv&7pwW9J*OxaFrdan4n^G5^G=0i0JQovI za{j&w5oVqi97k>=m4lF5k;vm>UW7;|>rU+;9=cGC{p{T0!&9brwbnQdPj zdk_Wpi7l@uCMXImmay!c6T%xMYF+ka+FD6nzuI?Z$CrIy1Y7;Cn2HGG@w(gXf9y8R z_Cx@GURgnQvz_phu+82!d3Sm^j-DEdkuN6#UoE5Ciz3?_MK4dp;cZ%lkfK<1H=}i> zSS9wnGg9q}pEBHzP{oW-ED<|&JTx{72CtNIj+~gDlz3+Jrhm-bqin6+AUjn69oUZRIFhm zGO901Id2196qq#Ga-Q-LAi66nad_z%pe9Oc;VA>WmDqqhAT)$C1u;ZfD27pB;q;1a?l>-(M3czi(T#_*i!<}bHpLTs literal 868 zcmb_aJx>Bb5Jfyh6i`GfEl89W&_pA4Mgt*=xd>uRwps2**tqwR+dTs&HvR=G|A~o} zrTRxK?5#|kg}ZpMqF|Gk-I<+vZ+B+&lloyg7K?4Z+_Uw;_vdYV`{w<*`u6_w+W&g} z*dV>fr_+brWjBsN!J5Inc62~41bBipjV2S)ySr+WlI{0E5|8kT8IeP*Ao7UlT16up ztwF;KI+%}oJ2*?su@j>8jenRJUZpS(b3MR1<4>S-w+MU<;-A`50BxR z*yX2$1ce3rWwnC9@!PLq8D8>Lw7)}(FK!h;`0usRtSi(ddARiJE5STh8#3AV0w|Cb&cH_!__$HV3ZQoz} zJiq6;-}`Gk+8;p>w9sKAOMR^9BYkgDOf`uK{t8wiD=FGdRj@wNNqZe}e~u|JBU1J&E;Q}Qh^1}Fza zUJ8FT;3RHoU^3gq@vIHUafc0u*l>sqSFqthY`BUIhuCm{4Ufczt1pMx8WAv3m3M6b zr|~i(FfS_3CXhJ!{V0-13rXEy9Ny!>-fKB?wESjI0fQ2t$;Y~xyKT8hg{$bNG45FS2%l^-ChfXXpz2PM)J@u+=4AH!Il97TTFf zn5-7UVx?#kCDR8i2hKABF%5bHk%^!MF)YA%C6LsGTqQ|hgaNZgv%plZl+Q|YxJuOl zYtoXo--iwu5V{M!F&H3_y(f?82AHMM03l?!f-IT=LhshBzv;z}nk#41sJ;FHjqe^U zIMx1ZZr#cQ-N{|Aid}o!d+rpio3pWg=KA89m+XbqYw@dZr#N?+i`H%y%IfTY-#gH7 z0zYE^>Ea&=d$tJIo7U{jYWjV7*D&2+PtuTsrp4#BAIY0&7`b8P1l#rVr@zsg>1m%Q zzMZzaq+?rmt9!@(b-P-i{_L{jCx*M`Peb!U1XTGIwwm-eSq-#>wh~6O*Iz6$lPNS5h3punsHA)nt2jX)bb=Y|1qJZB zDt>BC&XiFXWbxybTOr*8^20;#J>V6Mx+^%K*!rN@00*w(fHej|?aGzNbm_IEOYrl& z0yeU4&X18IUo}XP2cx~7O0U2QlE=%iyfXE15-8)O75tAv*|UJtVkN{849SBbaH@o; ziCvLjk#g?5oY>@;QLv))$~U-xM(n#a8gm|#7!HXA~q z%0#5N=grMm+d6B?_croZ0d8-Qh30 zg|Aa)*M4lBK2Eq(b+Vy}nvAscusEk>(~VKmS*up;Niz!$}QujmG4 zLSSjRR{BWLQ>wdR`1fT=AO?J4$T6TI24hs4ZPR7HuY7Ng?t3{jRj}U-x~zBaQLWKs leRIJfm*55%#s%*ioMw+bS-t4%eKS%m2GgO%Vj8|z{{y*Ccdq~d delta 69 zcmdm~xS2_sjggUofq~J@*(xTqIJKxa#y8nFv$&+FDl%lU9$TS|Us`5Ps+GRJzO$7+ MSb;v0f^BTw0IpFL-2eap diff --git a/Partypacker/obj/Debug/net7.0/Partypacker.csproj.CopyComplete b/Partypacker/obj/Debug/net7.0/Partypacker.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/Partypacker/obj/Debug/net7.0/Partypacker.csproj.CoreCompileInputs.cache b/Partypacker/obj/Debug/net7.0/Partypacker.csproj.CoreCompileInputs.cache index d821780..87a1da6 100644 --- a/Partypacker/obj/Debug/net7.0/Partypacker.csproj.CoreCompileInputs.cache +++ b/Partypacker/obj/Debug/net7.0/Partypacker.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -b93e4be91f5f591f1cdbd8e45b389f3952336f5e5ba35bdcd94b5a94e18e074b +93a6d38263c9444725d254e865343ad12041a05736bdad69484a499f486f1c5a diff --git a/Partypacker/obj/Debug/net7.0/Partypacker.csproj.FileListAbsolute.txt b/Partypacker/obj/Debug/net7.0/Partypacker.csproj.FileListAbsolute.txt index d69e8ab..99fb06e 100644 --- a/Partypacker/obj/Debug/net7.0/Partypacker.csproj.FileListAbsolute.txt +++ b/Partypacker/obj/Debug/net7.0/Partypacker.csproj.FileListAbsolute.txt @@ -15,3 +15,31 @@ D:\Projects\DotNET\Partypacker\Partypacker\obj\Debug\net7.0\ref\Partypacker.dll D:\Projects\DotNET\Partypacker\Partypacker\bin\Debug\net7.0\Pastel.dll D:\Projects\DotNET\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.csproj.AssemblyReference.cache D:\Projects\DotNET\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.csproj.CopyComplete +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\Partypacker.exe +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\Partypacker.deps.json +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\Partypacker.runtimeconfig.json +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\Partypacker.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\Partypacker.pdb +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\Pastel.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.csproj.AssemblyReference.cache +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.AssemblyInfoInputs.cache +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.AssemblyInfo.cs +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.csproj.CoreCompileInputs.cache +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.sourcelink.json +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\refint\Partypacker.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.pdb +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.genruntimeconfig.cache +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\ref\Partypacker.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypac.7577FB8A.Up2Date +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\BasicFormatsForCore.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\BCMakeCert.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\DotNetZip.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\FiddlerCore.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\System.ComponentModel.Composition.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\System.Security.Permissions.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\Telerik.NetworkConnections.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll diff --git a/Partypacker/obj/Debug/net7.0/Partypacker.dll b/Partypacker/obj/Debug/net7.0/Partypacker.dll index 08fbbeaed629df6b9bb163bab2756f08112bb1e5..973b70e4467800d1f51bfd2ca41a2060856348c9 100644 GIT binary patch delta 2344 zcmZuzZA@F&8Gg>W*B5_);o4wKAi+RFT-+w*A@GZJO4lTBd5!)NZP}Y*ID;P1~Pj&p8mf zO*?R&_kEuCJ?Ea!dwrtk#MU#jjroXg7AxgXXoOF+0wD_SW$|os{;j?K2a>>UC2R$* zx#k;!rB4E-Lf zsj`z*!iAfSz-$E|$eC+7>DpFjkKF&zUxD3{I~G>=v*;|c|>*kdTMt=l44;<2q)f^NHH zQ%T`A`;L_tq>Cd9GxO_u5(SIgb{{p_wMvWDFcfn|*U&7_vQ~L|s<5r<{XxsNJTK;N zn?aB5*>oXV$FMhm=vvyK&-Mkqwzs}4zAgsZ=D1f`r`)XVSjPmAnYJrhul$k_`-w*A z`rrfQ)j`M`s)VfSlDEQUb^-x;K*8CT1{(?D+=KA}SoKe$p z;C0$rSEYsfWdrs1gu;TxIgO=S|FZV~2G#bUTw?wjNk2{*Kav47nl~8u8WlcFcl2wy@$uzPg~W~|1?gc8Rz90V!&`1 zUBr1}(tH^yJdJPj!g}yBu~B0$aZf}o)C=J`PEufKm0ct&tg_2w&#y8SJG;u%=)a@b zH0J5P!#c%#dbd-FW2@{3oX$DT=ELWV>zu&F)fm?mZ)rAz00(X2+6s$l_WlZcNHcZa zEwwVZ&L>Iqm>x{e83H!cOlpW;+(WEDo5n7Uy&C&9KB{p@W148;2(b!z?O(yHY{L~e z=)_eVM-Lx#L-tbn4PQrB@vQ9O>dhICP)QgAe93K@MwVuje^>DjhOZ)PDm0BA{0f8S zL8eZb1)Rc|d6|lDCVY~=sQ#>P89a$i}}ph!iS#EMCm|oYF~bQWa98Z{@H~^-|s~IgN5`F zj52vw?g+k;OOGhqH!)tE7|YRJc&+TDIX!?J##pnMLIi1y6DKf9mZw!LqcbLO7~K%{ z4>RWw^(+oBwu3nZ=8iLaig{SOn{9Kt-8N>AuH#5cukHo(XjC zzx+wn-;-7-)o?S8wT zUjQlGZWBUCo_c%8g7o|Cp|ioH(;fUndqN=I7H^HW#-7S#I#ZcUB9%)evzcsXXQI6$ z*_CZeWjANjx%Q6s&Qv;;?HY0FD$lk5b+`K##3Osu@*iOReu9)$EiW{`yhBYhFq&*mX-{zP04v D@o$+! delta 2060 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 XL;<)9F_YXF*Z;lANS_V6MhbgN@ zBgz5zMkB_$WQ1qHkoG`L;G8zZA+V!&hz>yYaa^8LALHB(KQLuY{(dX_M7oJmn|ZK4 zJ6p?84dsiXI@;#FJYMF@iw(9I_z>mn+ak*W-Oh2 zWRgY(CCQ>Rb|0uiVG7Dl3QWVL;dGo#k&QPSG|7)Wjk}sV@yhd}<>c-!n?S&6C?f=A zzF5Z1_6p$2poB+I;`_hn7QgdbVaao6>Af*~+P{9@T=}$dcjhYJoJcDBIYdq*CdzV; z@K*0})?(t2x18#@sO6N~9T&&!S)(TBb3}Lty)vwcU?GGwDFE6~5M!B;ffYb_9hES= o4?PP%!@~Hsto!BNq^yTAB)Ju%!Yc~vJw&gHoQF=F=$IJ$0rduPH2?qr delta 433 zcmZqJ!P&5bbAk=yi;1?*^^B(0!LA{p3@{v^9mwbj4Y%)0BP5d5QgVKy5>p@SY6GPa7Gs(KPWRf17sFD2ykU!NNHmS3dg0wqr1Fs8iNUgDT5h<1w%4J3PU0g z8Zo3XSOP^%fih`8F+&DpAWQ_(=3q5OK(S;XGzG#WAO@LW1UAKVd;Al|QYPzb_aSa! z0y-!ch(9nfF?{&K2zDM!jt9sS0pbK^CWeHsaJlXL&l#Wc3QTEm*gRu>pw~9X1i99I z4imStd}T~XWN~0+V3-~d#w5ZP0AyWZn%)$~G>_3_x?(t!GNZtD*KnrgjLZfMY}4OI kFlleki)7Mb61xI)#S<2=-3%d%nHXLH?Rvs8nUQ%J0DQ-0SpWb4 diff --git a/Partypacker/obj/Debug/net7.0/ref/Partypacker.dll b/Partypacker/obj/Debug/net7.0/ref/Partypacker.dll index be4bb32aacd202daaa0f0420fabb627c1ff7a866..a53f53418bb003363e404314875e980d7b90d464 100644 GIT binary patch delta 462 zcmZWmJxc>Y5PfseXe5Rt2dUCT3nP(uxl8VH*hDN0h#w##R+_s+@B@E+rbNf$wR_Qs(++HGVFx|lx`r`odQQ`Gnpnds-Fi+N zeQ>CaD309Sz=ZGLrQ#|0qH2V6Cat8E)Ust6x@Bp4MbFxnZ5W!G%bIpZxAS(XqUKaX zFX^^f77x7*u^tLX?|HsIJpb$qP9jE+?s;gGL@2xwYx#ivB_PTAhony&gioj@GLe2N zyK|8X@@->Sd__~UDJ;X{Fra&?u~wK_p2uPu92!*Q*fBZJaLq=ZS>kg)zUuXsJl{ka Z5QFjv-MJOHC$HhIGK}XYt_J_VOAav z1_nl;KJ&=|Y$=Qlo42xAGBK7+e$Nqa{+XefA(^2DNOFP6Yz8UD#bA-eV3EZP*$j@1 zhruF`8I%|@7#}kTG30G-<@9F8uypbRo)?^4j0~)XdIow1lYjBfnmn0Lkar2t*)Xtg z@0~;R+K>8Hhc3lE6GhlgWmH%8UY=Lj{*J nG8-_kP5v*WJ-JTUim_z#PGJuwpb;UQ4v^5fU;*~@L<4pJ?8aP7 diff --git a/Partypacker/obj/Debug/net7.0/refint/Partypacker.dll b/Partypacker/obj/Debug/net7.0/refint/Partypacker.dll index be4bb32aacd202daaa0f0420fabb627c1ff7a866..a53f53418bb003363e404314875e980d7b90d464 100644 GIT binary patch delta 462 zcmZWmJxc>Y5PfseXe5Rt2dUCT3nP(uxl8VH*hDN0h#w##R+_s+@B@E+rbNf$wR_Qs(++HGVFx|lx`r`odQQ`Gnpnds-Fi+N zeQ>CaD309Sz=ZGLrQ#|0qH2V6Cat8E)Ust6x@Bp4MbFxnZ5W!G%bIpZxAS(XqUKaX zFX^^f77x7*u^tLX?|HsIJpb$qP9jE+?s;gGL@2xwYx#ivB_PTAhony&gioj@GLe2N zyK|8X@@->Sd__~UDJ;X{Fra&?u~wK_p2uPu92!*Q*fBZJaLq=ZS>kg)zUuXsJl{ka Z5QFjv-MJOHC$HhIGK}XYt_J_VOAav z1_nl;KJ&=|Y$=Qlo42xAGBK7+e$Nqa{+XefA(^2DNOFP6Yz8UD#bA-eV3EZP*$j@1 zhruF`8I%|@7#}kTG30G-<@9F8uypbRo)?^4j0~)XdIow1lYjBfnmn0Lkar2t*)Xtg z@0~;R+K>8Hhc3lE6GhlgWmH%8UY=Lj{*J nG8-_kP5v*WJ-JTUim_z#PGJuwpb;UQ4v^5fU;*~@L<4pJ?8aP7 diff --git a/Partypacker/obj/Partypacker.csproj.nuget.dgspec.json b/Partypacker/obj/Partypacker.csproj.nuget.dgspec.json index 72def15..ac081a0 100644 --- a/Partypacker/obj/Partypacker.csproj.nuget.dgspec.json +++ b/Partypacker/obj/Partypacker.csproj.nuget.dgspec.json @@ -1,23 +1,23 @@ { "format": 1, "restore": { - "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\Partypacker.csproj": {} + "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\Partypacker.csproj": {} }, "projects": { - "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\Partypacker.csproj": { + "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\Partypacker.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\Partypacker.csproj", + "projectUniqueName": "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\Partypacker.csproj", "projectName": "Partypacker", - "projectPath": "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\Partypacker.csproj", - "packagesPath": "C:\\Users\\McMistrzYT\\.nuget\\packages\\", - "outputPath": "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\obj\\", + "projectPath": "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\Partypacker.csproj", + "packagesPath": "C:\\Users\\shady\\.nuget\\packages\\", + "outputPath": "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "C:\\Users\\McMistrzYT\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\shady\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], @@ -25,8 +25,7 @@ "net7.0" ], "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} + "C:\\Users\\shady\\Desktop\\Partypacker\\.pkg": {} }, "frameworks": { "net7.0": { @@ -38,15 +37,28 @@ "warnAsError": [ "NU1605" ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" } }, "frameworks": { "net7.0": { "targetAlias": "net7.0", "dependencies": { + "FiddlerCore.Trial": { + "target": "Package", + "version": "[5.0.2, )" + }, "Pastel": { "target": "Package", "version": "[5.0.0, )" + }, + "System.ComponentModel.Composition": { + "target": "Package", + "version": "[8.0.0, )" } }, "imports": [ @@ -65,7 +77,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.101\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200-preview.23624.5\\RuntimeIdentifierGraph.json" } } } diff --git a/Partypacker/obj/Partypacker.csproj.nuget.g.props b/Partypacker/obj/Partypacker.csproj.nuget.g.props index dc4c6ef..b25dbb1 100644 --- a/Partypacker/obj/Partypacker.csproj.nuget.g.props +++ b/Partypacker/obj/Partypacker.csproj.nuget.g.props @@ -5,12 +5,24 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\McMistrzYT\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + C:\Users\shady\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.8.0 + 6.9.0 - + + + + FiddlerCore.Trial + 5.0.2 + Content + false + PreserveNewest + BasicFormatsForCore.dll + True + BasicFormatsForCore.dll + + \ No newline at end of file diff --git a/Partypacker/obj/project.assets.json b/Partypacker/obj/project.assets.json index fd60de5..ff9d275 100644 --- a/Partypacker/obj/project.assets.json +++ b/Partypacker/obj/project.assets.json @@ -2,6 +2,104 @@ "version": 3, "targets": { "net7.0": { + "BCMakeCert/2.0.9": { + "type": "package", + "compile": { + "lib/netstandard2.0/BCMakeCert.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BCMakeCert.dll": {} + } + }, + "DotNetZip/1.13.8": { + "type": "package", + "dependencies": { + "System.Security.Permissions": "[4.5.0, 5.0.0)", + "System.Text.Encoding.CodePages": "[4.5.0, 5.0.0)", + "System.Text.Encoding.Extensions": "[4.3.0, 5.0.0)" + }, + "compile": { + "lib/netstandard2.0/DotNetZip.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/DotNetZip.dll": { + "related": ".pdb;.xml" + } + } + }, + "FiddlerCore.Trial/5.0.2": { + "type": "package", + "dependencies": { + "BCMakeCert": "2.0.9", + "DotNetZip": "1.13.4", + "Microsoft.Win32.Registry": "4.5.0", + "System.Configuration.ConfigurationManager": "4.4.0", + "Telerik.NetworkConnections": "0.2.0" + }, + "compile": { + "lib/netstandard2.0/FiddlerCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/FiddlerCore.dll": { + "related": ".xml" + } + }, + "contentFiles": { + "contentFiles/any/netstandard2.0/BasicFormatsForCore.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BasicFormatsForCore.dll" + } + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Registry/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.5.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "Pastel/5.0.0": { "type": "package", "compile": { @@ -14,10 +112,336 @@ "related": ".xml" } } + }, + "System.ComponentModel.Composition/8.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.ComponentModel.Composition.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.ComponentModel.Composition.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Configuration.ConfigurationManager/4.4.1": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.4.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + } + }, + "System.Security.AccessControl/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/4.4.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.CodePages/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": { + "related": ".xml" + } + } + }, + "Telerik.NetworkConnections/0.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.5.0", + "System.ComponentModel.Composition": "4.6.0" + }, + "compile": { + "lib/netstandard2.0/Telerik.NetworkConnections.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Telerik.NetworkConnections.dll": { + "related": ".xml" + } + } } } }, "libraries": { + "BCMakeCert/2.0.9": { + "sha512": "GBAneZZniACYigSU8FuK7CBav+sZ9eHQWyt10Qgqyxp1RULO9fGv2WYfLOYHhbdg+hs/sU+OLCPwMwzGqZOCVg==", + "type": "package", + "path": "bcmakecert/2.0.9", + "files": [ + ".nupkg.metadata", + "EULA.txt", + "THIRD-PARTY-NOTICES.txt", + "bcmakecert.2.0.9.nupkg.sha512", + "bcmakecert.nuspec", + "icon.png", + "lib/net40/BCMakeCert.dll", + "lib/netstandard2.0/BCMakeCert.dll" + ] + }, + "DotNetZip/1.13.8": { + "sha512": "r4oFZLHuxhOw4kr19nuVBQe+r0OMqqO2VZw5p6uW4ANZM/bPAuWBkUSo+P1R0KT7yYXpuT/wH7D9o59lPtCPrA==", + "type": "package", + "path": "dotnetzip/1.13.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnetzip.1.13.8.nupkg.sha512", + "dotnetzip.nuspec", + "lib/net40/DotNetZip.dll", + "lib/net40/DotNetZip.pdb", + "lib/net40/DotNetZip.xml", + "lib/netstandard2.0/DotNetZip.dll", + "lib/netstandard2.0/DotNetZip.pdb", + "lib/netstandard2.0/DotNetZip.xml" + ] + }, + "FiddlerCore.Trial/5.0.2": { + "sha512": "ysifju0hXE+HQCmoYvZHIrp/YPXBtdJIz5dUo9JeMyXyB1v1vjm1ViTdvXMwZDiLlfxBK2JfaN5UBGCsuis4yg==", + "type": "package", + "path": "fiddlercore.trial/5.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EULA.txt", + "THIRD-PARTY-NOTICES.txt", + "content/BasicFormatsForCore.dll", + "contentFiles/any/net40/BasicFormatsForCore.dll", + "contentFiles/any/net45/BasicFormatsForCore.dll", + "contentFiles/any/netstandard2.0/BasicFormatsForCore.dll", + "fiddlercore.trial.5.0.2.nupkg.sha512", + "fiddlercore.trial.nuspec", + "icon.png", + "lib/net40/FiddlerCore.dll", + "lib/net40/FiddlerCore.pdb", + "lib/net40/FiddlerCore.xml", + "lib/net45/FiddlerCore.dll", + "lib/net45/FiddlerCore.pdb", + "lib/net45/FiddlerCore.xml", + "lib/netstandard2.0/FiddlerCore.dll", + "lib/netstandard2.0/FiddlerCore.xml" + ] + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "type": "package", + "path": "microsoft.netcore.platforms/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Registry/4.5.0": { + "sha512": "+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==", + "type": "package", + "path": "microsoft.win32.registry/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "microsoft.win32.registry.4.5.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "Pastel/5.0.0": { "sha512": "678i15lh+oAKZs2ihgiDVmDbiprEbji2L/w+jIcTkZpkdJ+UgrhToQTQN3Mw0bfM+Yx3cIBA3BS7iKT2poqBQg==", "type": "package", @@ -37,31 +461,548 @@ "pastel.5.0.0.nupkg.sha512", "pastel.nuspec" ] + }, + "System.ComponentModel.Composition/8.0.0": { + "sha512": "bGhUX5BTivJ9Wax0qnJy7uGq7dn/TQkEpJ2Fpu1etg8dbPwyDkUzNPc1d3I2/jUr9y4wDI3a1dkSmi8X21Pzbw==", + "type": "package", + "path": "system.componentmodel.composition/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.ComponentModel.Composition.targets", + "lib/net462/_._", + "lib/net6.0/System.ComponentModel.Composition.dll", + "lib/net6.0/System.ComponentModel.Composition.xml", + "lib/net7.0/System.ComponentModel.Composition.dll", + "lib/net7.0/System.ComponentModel.Composition.xml", + "lib/net8.0/System.ComponentModel.Composition.dll", + "lib/net8.0/System.ComponentModel.Composition.xml", + "lib/netstandard2.0/System.ComponentModel.Composition.dll", + "lib/netstandard2.0/System.ComponentModel.Composition.xml", + "system.componentmodel.composition.8.0.0.nupkg.sha512", + "system.componentmodel.composition.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Configuration.ConfigurationManager/4.4.1": { + "sha512": "jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==", + "type": "package", + "path": "system.configuration.configurationmanager/4.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.4.1.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.CompilerServices.Unsafe/4.5.0": { + "sha512": "YrzNWduCDHhUaSRBxHxL11UkM2fD6y8hITHis4/LbQZ6vj3vdRjoH3IoPWWC9uDXK2wHIqn+b5gv1Np/VKyM1g==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/uap10.0.16300/_._", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/uap10.0.16300/_._", + "system.runtime.compilerservices.unsafe.4.5.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.AccessControl/4.5.0": { + "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", + "type": "package", + "path": "system.security.accesscontrol/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.5.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/4.4.0": { + "sha512": "cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Permissions/4.5.0": { + "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "type": "package", + "path": "system.security.permissions/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.5.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.5.0": { + "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", + "type": "package", + "path": "system.security.principal.windows/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.5.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.5.0": { + "sha512": "S0wEUiKcLvRlkFUXca8uio1UQ5bYQzYgOmOKtCqaBQC3GR9AJjh43otcM32IGsAyvadFTaAMw9Irm6dS4Evfng==", + "type": "package", + "path": "system.text.encoding.codepages/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll", + "ref/netstandard1.3/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml", + "ref/netstandard2.0/System.Text.Encoding.CodePages.dll", + "ref/netstandard2.0/System.Text.Encoding.CodePages.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.5.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "Telerik.NetworkConnections/0.2.0": { + "sha512": "CuRCESra/miCNvFSniRhvG1d8Abx0oI7/rYXvb/panClfQvq1WfXaMWrnXlD8Zdi8wpgwSxTDX+XIimCeYUxFw==", + "type": "package", + "path": "telerik.networkconnections/0.2.0", + "files": [ + ".nupkg.metadata", + "EULA.txt", + "THIRD-PARTY-NOTICES.txt", + "icon.png", + "lib/net40/Telerik.NetworkConnections.dll", + "lib/net40/Telerik.NetworkConnections.pdb", + "lib/net40/Telerik.NetworkConnections.xml", + "lib/netstandard2.0/Telerik.NetworkConnections.dll", + "lib/netstandard2.0/Telerik.NetworkConnections.xml", + "telerik.networkconnections.0.2.0.nupkg.sha512", + "telerik.networkconnections.nuspec" + ] } }, "projectFileDependencyGroups": { "net7.0": [ - "Pastel >= 5.0.0" + "FiddlerCore.Trial >= 5.0.2", + "Pastel >= 5.0.0", + "System.ComponentModel.Composition >= 8.0.0" ] }, "packageFolders": { - "C:\\Users\\McMistrzYT\\.nuget\\packages\\": {}, + "C:\\Users\\shady\\.nuget\\packages\\": {}, "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\Partypacker.csproj", + "projectUniqueName": "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\Partypacker.csproj", "projectName": "Partypacker", - "projectPath": "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\Partypacker.csproj", - "packagesPath": "C:\\Users\\McMistrzYT\\.nuget\\packages\\", - "outputPath": "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\obj\\", + "projectPath": "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\Partypacker.csproj", + "packagesPath": "C:\\Users\\shady\\.nuget\\packages\\", + "outputPath": "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "C:\\Users\\McMistrzYT\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\shady\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], @@ -69,8 +1010,7 @@ "net7.0" ], "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} + "C:\\Users\\shady\\Desktop\\Partypacker\\.pkg": {} }, "frameworks": { "net7.0": { @@ -82,15 +1022,28 @@ "warnAsError": [ "NU1605" ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" } }, "frameworks": { "net7.0": { "targetAlias": "net7.0", "dependencies": { + "FiddlerCore.Trial": { + "target": "Package", + "version": "[5.0.2, )" + }, "Pastel": { "target": "Package", "version": "[5.0.0, )" + }, + "System.ComponentModel.Composition": { + "target": "Package", + "version": "[8.0.0, )" } }, "imports": [ @@ -109,8 +1062,30 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.101\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200-preview.23624.5\\RuntimeIdentifierGraph.json" } } - } + }, + "logs": [ + { + "code": "NU1603", + "level": "Warning", + "warningLevel": 1, + "message": "FiddlerCore.Trial 5.0.2 depends on DotNetZip (>= 1.13.4) but DotNetZip 1.13.4 was not found. An approximate best match of DotNetZip 1.13.8 was resolved.", + "libraryId": "DotNetZip", + "targetGraphs": [ + "net7.0" + ] + }, + { + "code": "NU1603", + "level": "Warning", + "warningLevel": 1, + "message": "FiddlerCore.Trial 5.0.2 depends on System.Configuration.ConfigurationManager (>= 4.4.0) but System.Configuration.ConfigurationManager 4.4.0 was not found. An approximate best match of System.Configuration.ConfigurationManager 4.4.1 was resolved.", + "libraryId": "System.Configuration.ConfigurationManager", + "targetGraphs": [ + "net7.0" + ] + } + ] } \ No newline at end of file diff --git a/Partypacker/obj/project.nuget.cache b/Partypacker/obj/project.nuget.cache index 2a4f67c..0d197d5 100644 --- a/Partypacker/obj/project.nuget.cache +++ b/Partypacker/obj/project.nuget.cache @@ -1,10 +1,49 @@ { "version": 2, - "dgSpecHash": "xszAUj8QGuuyIxqTWZGTE3qs/uA4z4NKEKxOVu7TuNRT3IXC0zJxEV9TwNlrRe3sPQCAxAG+5n6ffIvah8bt7A==", + "dgSpecHash": "86tzdSMyBZ4LBgWRo2DCgvyZ/VEc/mczCWvJH8pbCS8w2w5880Cfq2lTezw5+n9JMG/0TxXtwTycvxRgQBa7kQ==", "success": true, - "projectFilePath": "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\Partypacker.csproj", + "projectFilePath": "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\Partypacker.csproj", "expectedPackageFiles": [ - "C:\\Users\\McMistrzYT\\.nuget\\packages\\pastel\\5.0.0\\pastel.5.0.0.nupkg.sha512" + "C:\\Users\\shady\\.nuget\\packages\\bcmakecert\\2.0.9\\bcmakecert.2.0.9.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\dotnetzip\\1.13.8\\dotnetzip.1.13.8.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\fiddlercore.trial\\5.0.2\\fiddlercore.trial.5.0.2.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\microsoft.win32.registry\\4.5.0\\microsoft.win32.registry.4.5.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\pastel\\5.0.0\\pastel.5.0.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.componentmodel.composition\\8.0.0\\system.componentmodel.composition.8.0.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.configuration.configurationmanager\\4.4.1\\system.configuration.configurationmanager.4.4.1.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.5.0\\system.runtime.compilerservices.unsafe.4.5.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.4.0\\system.security.cryptography.protecteddata.4.4.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.text.encoding.codepages\\4.5.0\\system.text.encoding.codepages.4.5.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\telerik.networkconnections\\0.2.0\\telerik.networkconnections.0.2.0.nupkg.sha512" ], - "logs": [] + "logs": [ + { + "code": "NU1603", + "level": "Warning", + "warningLevel": 1, + "message": "FiddlerCore.Trial 5.0.2 depends on DotNetZip (>= 1.13.4) but DotNetZip 1.13.4 was not found. An approximate best match of DotNetZip 1.13.8 was resolved.", + "libraryId": "DotNetZip", + "targetGraphs": [ + "net7.0" + ] + }, + { + "code": "NU1603", + "level": "Warning", + "warningLevel": 1, + "message": "FiddlerCore.Trial 5.0.2 depends on System.Configuration.ConfigurationManager (>= 4.4.0) but System.Configuration.ConfigurationManager 4.4.0 was not found. An approximate best match of System.Configuration.ConfigurationManager 4.4.1 was resolved.", + "libraryId": "System.Configuration.ConfigurationManager", + "targetGraphs": [ + "net7.0" + ] + } + ] } \ No newline at end of file